Blind SSRF with Internal Headers
Plataforma de archivos con importacion remota que realiza peticiones server-side pero no devuelve la respuesta. Los headers internos (incluyendo la flag) se envian en la peticion y son visibles desde el servidor del atacante.
Learn to find this bug
A real bug bounty report, reproduced for you to practice.
Create your account and practice real bugs that got paid. Download the environment, find it and learn the exact technique — your path to your first bounty.
- hunters training
- 650
- labs from real reports
- 50
- completions
- 380
- in bounties practiced
- $200,000
hunters training
labs from real reports
completions
in bounties practiced
Access to all labs · no commitment · cancel anytime
Hunters who solved it· 8
Objectives
Achievement you'll earn
Solve this lab to unlock this shareable achievement
Blind SSRF with Internal Headers
Community writeups
Despliegue
# Opcion 1: autodeploy
./autodeploy.sh
# Opcion 2: manual
docker compose up --build
# Acceder
http://localhost:2000
Compatible con macOS, Linux y Windows (Docker Desktop / WSL).
Para parar:
./autodeploy.sh destroy
# o: docker compose down -v
Contenido del Lab
La aplicacion
FileForge con funcionalidad de importacion remota de archivos.
La vulnerabilidad
Remote File Import hace fetch server-side con headers internos incluyendo X-Internal-Flag. La respuesta del fetch no se devuelve al usuario (blind), pero los headers se envian al servidor destino.
Cadena de ataque
1. Usar Remote File Import con URL propia
2. Recibir peticion en el servidor
3. Leer headers: X-Internal-Flag contiene la flag
4. Alternativa: usar inspector integrado de la app
Solucion interactiva
Accede a /writeup dentro de la aplicacion para una guia paso a paso con botones interactivos.
Flag
5ebe2294ecd0e0f08eab7690d2a6ee69
Remediacion
- No incluir headers internos en peticiones a URLs de usuario
- Whitelist de dominios permitidos
- Bloquear localhost y rangos privados
- Proxy dedicado sin headers internos