/recon-methodology
```bash subfinder -d target.com -silent -all | sort -u > subs.txt httpx -l subs.txt -silent -status-code -tech-detect | tee live-hosts.txt ```
$ npx -y skills add H-mmer/pentest-agents --skill recon-methodology --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/recon-methodology
Context preview
The summary Claude sees to decide when to auto-load this skill.
```bash subfinder -d target.com -silent -all | sort -u > subs.txt httpx -l subs.txt -silent -status-code -tech-detect | tee live-hosts.txt ```
SKILL.md
recon-methodology.SKILL.mdRecon Methodology
Phase 1: Passive (no direct contact)
Subdomain Enumeration
subfinder -d target.com -silent -all | sort -u > subs.txt
httpx -l subs.txt -silent -status-code -tech-detect | tee live-hosts.txt
URL Discovery
gau target.com | sort -u > historical-urls.txt
waybackurls target.com | sort -u >> historical-urls.txt
grep -E "\?.*=" historical-urls.txt > params.txt
grep -iE "api|admin|internal|debug|test|staging" historical-urls.txt > interesting.txt
Tech Detection
curl -sI https://target.com | grep -iE "server|x-powered|x-runtime|x-generator"
Phase 2: Active (light contact)
Content Discovery
ffuf -u https://target.com/FUZZ -w wordlists/common.txt -mc 200,301,302,403
ffuf -u https://target.com/api/FUZZ -w wordlists/api-endpoints.txt -mc 200,401,403,405
JS Analysis
katana -u https://target.com -d 3 -jc -ef css,png,jpg,gif | grep "\.js$" | sort -u > js-files.txt
# Grep for secrets and endpoints in downloaded JS
grep -rohE '/api/[a-zA-Z0-9/_-]+' downloaded-js/ | sort -u
Phase 3: Organize
Key Output Files
recon/<target>/
├── live-hosts.txt — verified live hosts with tech
├── urls.txt — all discovered URLs
├── api-endpoints.txt — API paths
├── js-analysis.txt — secrets and endpoints from JS
├── idor-candidates.txt — URLs with ID parameters
├── ssrf-candidates.txt — URLs with URL/redirect parameters
└── tech-stack.txt — technology summary
Extract Candidates
# IDOR candidates:
grep -E '/[0-9]+|id=|user_id=|order_id=' urls.txt > idor-candidates.txt
# SSRF candidates:
grep -iE 'url=|uri=|redirect=|next=|dest=|callback=' urls.txt > ssrf-candidates.txt
After recon: run `/surface` for P1/P2/Kill ranking.
Read more
Recon Methodology
Phase 1: Passive (no direct contact)
Subdomain Enumeration
subfinder -d target.com -silent -all | sort -u > subs.txt httpx -l subs.txt -silent -status-code -tech-detect | tee live-hosts.txt
URL Discovery
gau target.com | sort -u > historical-urls.txt waybackurls target.com | sort -u >> historical-urls.txt grep -E "\?.*=" historical-urls.txt > params.txt grep -iE "api|admin|internal|debug|test|staging" historical-urls.txt > interesting.txt
Tech Detection
curl -sI https://target.com | grep -iE "server|x-powered|x-runtime|x-generator"
Phase 2: Active (light contact)
Content Discovery
ffuf -u https://target.com/FUZZ -w wordlists/common.txt -mc 200,301,302,403 ffuf -u https://target.com/api/FUZZ -w wordlists/api-endpoints.txt -mc 200,401,403,405
JS Analysis
katana -u https://target.com -d 3 -jc -ef css,png,jpg,gif | grep "\.js$" | sort -u > js-files.txt # Grep for secrets and endpoints in downloaded JS grep -rohE '/api/[a-zA-Z0-9/_-]+' downloaded-js/ | sort -u
Phase 3: Organize
Key Output Files
recon/<target>/ ├── live-hosts.txt — verified live hosts with tech ├── urls.txt — all discovered URLs ├── api-endpoints.txt — API paths ├── js-analysis.txt — secrets and endpoints from JS ├── idor-candidates.txt — URLs with ID parameters ├── ssrf-candidates.txt — URLs with URL/redirect parameters └── tech-stack.txt — technology summary
Extract Candidates
# IDOR candidates: grep -E '/[0-9]+|id=|user_id=|order_id=' urls.txt > idor-candidates.txt # SSRF candidates: grep -iE 'url=|uri=|redirect=|next=|dest=|callback=' urls.txt > ssrf-candidates.txt
After recon: run `/surface` for P1/P2/Kill ranking.
Bug bounty agent framework for Claude Code, Codex, Gemini, Cursor, Windsurf, Copilot, and OpenClaw — 48 agents, 26 commands, 19 CLI tools, 2 MCP servers, autonomous hunt loops, exploit chain builder.
Repo: H-mmer/pentest-agents
Other skills on pentest-agents.
- /analyze
Analyze recon output with AI to suggest high-value targets and attack strategies. Usage: /analyze <target>
Open skill - /autopilot
Autonomous hunt orchestrator. INSATIABLE in --autonomous mode: enforces an EXHAUSTION CONTRACT (26 canonical hunter classes, surface probe A-I, depth-engine ≥25 attempts/class, wall-clock floor 90 min/target, PRE-COMPLETION GATE before any summary). No early stops, no clarifying
Open skill - /brain
Manage the engagement brain. Subcommands: 'init' to set up, 'brief <target>' for pre-flight, 'status' for overview, 'exhausted [target]' to see dead ends.
Open skill - /chain
Build deep exploit chains — dispatches chain-builder agent. Given bug A, recursively walks the chain graph. Usage: /chain (then describe bug A)
Open skill - /correlate
Run the finding correlation engine to discover attack chains from individual findings.
Open skill - /cost
Show cost tracking and ROI for this engagement.
Open skill

