SSRF Internal Network Scanning & Credential Exfiltration
Plataforma de archivos con Page Export que permite escanear la red interna, descubrir un servicio admin oculto, robar credenciales y acceder al panel de administracion.
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
SSRF Internal Network Scanning & Credential Exfiltration
Community writeups
Despliegue
# Opcion 1: autodeploy
./autodeploy.sh
# Opcion 2: manual
docker compose up --build
# Acceder
http://localhost:1200
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 Page Export (fetch server-side) y servicio de administracion oculto en localhost:9999.
La vulnerabilidad
Page Export hace fetch de cualquier URL desde el servidor. Permite escanear la red interna probando diferentes puertos. El servicio admin en puerto 9999 tiene endpoint /admin/adminUsers que devuelve credenciales.
Cadena de ataque
1. Page Export con http://127.0.0.1:1-65535 (scan)
2. Encontrar puerto 9999 abierto
3. Fetch http://127.0.0.1:9999/admin/adminUsers
4. Obtener credenciales: admin / SuperSecr3t!2024
5. Login en /admin → Panel completo + Flag
Solucion interactiva
Accede a /writeup dentro de la aplicacion para una guia paso a paso con botones interactivos.
Flag
d8578edf8458ce06fbc5bb76a58c5ca4
Remediacion
- Whitelist de URLs/dominios para export
- Bloquear acceso a localhost y rangos privados
- No exponer credenciales en endpoints internos
- Network segmentation