Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
ssrf-sheriff — Un simple sheriff de pruebas SSRF escrito en Go | Kitploit
Herramientas/GitHubGitHub/teknogeek/ssrf-sheriff
Escáneres de VulnerabilidadesSeguridad WebPruebas de Penetración
GitHubteknogeek/ssrf-sheriff

ssrf-sheriff

Un simple sheriff de pruebas SSRF escrito en Go

Ver Repositorio
33870hace 1 añoRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

SSRF Sheriff

Este es un sheriff de pruebas SSRF escrito en Go. Fue creado originalmente para el Uber H1-4420 2019 London Live Hacking Event, pero ahora se está publicando como código abierto para que otras organizaciones lo implementen y contribuyan.

Características

  • Responde a cualquier método HTTP (GET, POST, PUT, DELETE, etc.)
  • Token secreto configurable (ver base.example.yaml)
  • Respuestas específicas por contenido
    • Con token secreto en el cuerpo de la respuesta
      • JSON
      • XML
      • HTML
      • CSV
      • TXT
      • PNG
      • JPEG
    • Sin token en el cuerpo de la respuesta
      • GIF
      • MP3
      • MP4

Uso

root@kitploit:~
go get github.com/teknogeek/ssrf-sheriff
cd $GOPATH/src/github.com/teknogeek/ssrf-sheriff
cp config/base.example.yaml config/base.yaml

# ... configure ...

go run main.go

Ejemplos de solicitudes:

Texto plano

root@kitploit:~
$ 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

root@kitploit:~
$ 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>

PENDIENTE

  • Generar dinámicamente respuestas válidas con el token secreto visible para
    • GIF
    • MP3
    • MP4
  • Secretos en la respuesta HTTP generados/creados/firmados por solicitud, en lugar de devolver un único secreto para todas las solicitudes
  • Soporte TLS

Crédito

Inspirado (y solicitado) por Frans Rosén durante su charla en BountyCon '19 Singapur


Publicado bajo la Licencia MIT.

Descargar herramienta