ssrf-hunter
Installation
SKILL.md
SSRF Hunter
Server-Side Request Forgery occurs when a server fetches a user-controlled URL, allowing attackers to reach internal services, cloud metadata, and resources behind firewalls that are otherwise inaccessible.
Phase 1 — Find Injection Points
SSRF lives anywhere the application fetches a remote resource based on user input. Cast a wide net.
1.1 Obvious URL Parameters
GET /fetch?url=https://example.com
GET /proxy?target=https://example.com
GET /preview?link=https://example.com
POST /webhook { "callback": "https://example.com" }