
Un semplice sheriff per test SSRF scritto in Go
Questo è uno sceriffo per test SSRF scritto in Go. È stato originariamente creato per l'Uber H1-4420 2019 London Live Hacking Event, ma ora è stato reso open-source affinché altre organizzazioni possano implementarlo e contribuire.
GET, POST, PUT, DELETE, ecc.)go get github.com/teknogeek/ssrf-sheriff
cd $GOPATH/src/github.com/teknogeek/ssrf-sheriff
cp config/base.example.yaml config/base.yaml
# ... configura ...
go run main.go
Testo semplice
$ curl -sSD- http://127.0.0.1:8000/foobar
HTTP/1.1 200 OK
Content-Type: text/plain
X-Secret-Token: SUP3R_S3cret_1337_K3y
Date: Mon, 14 Oct 2019 16:37:36 GMT
Content-Length: 21
SUP3R_S3cret_1337_K3y
XML
$ curl -sSD- http://127.0.0.1:8000/foobar.xml
HTTP/1.1 200 OK
Content-Type: application/xml
X-Secret-Token: SUP3R_S3cret_1337_K3y
Date: Mon, 14 Oct 2019 16:37:41 GMT
Content-Length: 81
<SerializableResponse><token>SUP3R_S3cret_1337_K3y</token></SerializableResponse>
Ispirato (e richiesto) da Frans Rosén durante il suo talk a BountyCon '19 Singapore
Rilasciato sotto Licenza MIT.