cd Stand
docker compose up --build
The vulnerable app runs at: http://localhost:3011
2. Run the Safe PoC Scanner
bash
cd PoC/src
poetry install
poetry run python scanner.py http://localhost:3011
✅ Expected PoC Output
text
[*] Scanning target: http://localhost:3011
[+] VULNERABLE! RCE confirmed.
[+] Command output (id): uid=1001(nextjs)...
[+] Network test (ping) SUCCESSFUL.
[*] Results saved to 'result.txt'.
File result.txt will contain: [{"ip": "http://localhost:3011", "vuln": true}]
📁 Project Structure
PoC/ – Safe scanner (Dockerfile, scanner.py)
Stand/ – Vulnerable Next.js app (Docker)
README.md – This file