ssrf-detection
Installation
SKILL.md
SSRF Detection
Overview
Find, exploit, and fix Server-Side Request Forgery. SSRF tricks the server into making HTTP requests to unintended destinations — accessing internal services, cloud metadata, or other systems that the server can reach but the attacker cannot.
Instructions
How SSRF Works
Normal flow:
User → Server → External API (intended)
SSRF attack:
User sends: url=http://169.254.169.254/latest/meta-data/
Server → AWS Metadata Service (unintended)
Server returns: IAM credentials, instance info, etc.