hunt-ssrf

Detects SSRF vulnerabilities via out-of-band requests and cloud metadata checks.

7|1|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/ArianHobson333/claude-bug-bounty-stack --skill hunt-ssrf-arianhobson333
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hunt-ssrf
Source: https://github.com/ArianHobson333/claude-bug-bounty-stack/tree/main/skills/hunt-ssrf
Command: npx skills add https://github.com/ArianHobson333/claude-bug-bounty-stack --skill hunt-ssrf-arianhobson333

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill helps identify Server-Side Request Forgery (SSRF) vulnerabilities in web applications, ensuring they are secure against malicious attacks that exploit such flaws.

Core Features & Use Cases

  • Out-of-Band Detection: Uses interactsh for SSRF detection, ensuring the server fetches external URLs without response visibility.
  • Cloud Metadata Targets: Checks for metadata endpoints in cloud environments (AWS, GCP, Azure, DigitalOcean) that could indicate SSRF vulnerabilities.
  • Blind SSRF Techniques: Applies various bypass techniques when direct SSRF attempts are blocked.
  • Use Case: A web application using AWS might be susceptible to SSRF if it doesn't validate user input properly, allowing an attacker to control the server's HTTP requests.

Quick Start

Run the skill with the following command: hunt-ssrf --target <url> to test for SSRF vulnerabilities in a given URL.

Frequently Asked Questions about hunt-ssrf

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect blind SSRF vulnerabilities in web applications?

Blind SSRF vulnerabilities are detected using out-of-band testing techniques like DNS rebinding and IP encoding to trigger external requests without needing server response visibility. This approach identifies security flaws by monitoring external interactions.

Can I test for SSRF vulnerabilities targeting cloud metadata endpoints?

Yes, SSRF vulnerability testing includes checking cloud metadata endpoints for AWS, GCP, Azure, and DigitalOcean environments. This identifies whether improper input validation allows unauthorized access to sensitive instance metadata.

What is out-of-band testing for SSRF detection?

Out-of-band testing for SSRF detection verifies if a server fetches external URLs by monitoring DNS or HTTP interactions to an external server. It confirms vulnerabilities when the application does not return responses directly.

How do I test a URL for SSRF vulnerabilities automatically?

You can test a URL for SSRF vulnerabilities automatically by running a command with a target URL parameter. The process assesses web application inputs and applies bypass techniques without requiring manual intervention.

What SSRF bypass techniques can I use when direct requests are blocked?

When direct SSRF attempts are blocked, bypass techniques include various IP encoding methods, DNS rebinding, and URL parsing manipulation. These strategies help circumvent input filters to reach internal or restricted resources.

Does SSRF detection require seeing the server response?

No, SSRF detection does not require server response visibility when using out-of-band testing methods. The detection mechanism relies on external callbacks and metadata checks rather than analyzing application responses.