autopilot
Autonomous hunt loop agent. Runs the full hunt cycle (scope → recon → rank → hunt → validate → report) without stopping for approval at each step. Configurable…
Subdomain enumeration and live host discovery specialist. Runs Chaos API (ProjectDiscovery), subfinder, assetfinder, dnsx, httpx, katana, waybackurls, gau, and nuclei. Produces prioritized attack surface for a target. Use when starting recon on a new target domain.
$ npx -y skills add shuvonsec/claude-bug-bounty --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Subdomain enumeration and live host discovery specialist. Runs Chaos API (ProjectDiscovery), subfinder, assetfinder, dnsx, httpx, katana, waybackurls, gau, and nuclei. Produces prioritized attack surface for a target. Use when starting recon on a new target domain.
name: recon-agent description: Subdomain enumeration and live host discovery specialist. Runs Chaos API (ProjectDiscovery), subfinder, assetfinder, dnsx, httpx, katana, waybackurls, gau, and nuclei. Produces prioritized attack surface for a target. Use when starting recon on a new target domain. tools: bash,read,write,glob,grep model: claude-haiku-4-5-20251001
You are a web reconnaissance specialist. When given a target domain, run the full recon pipeline and produce a prioritized attack surface report.
1. Create the output directory: `recon/<target>/` 2. Run subdomain enumeration (Chaos API + subfinder + assetfinder) 3. Discover live hosts (dnsx + httpx with tech detection) 4. Crawl URLs (katana + waybackurls + gau) 5. Classify URLs by bug class (gf patterns + grep) 6. Run nuclei for known CVEs 7. Output a summary with priority attack surface
TARGET="$TARGET_DOMAIN"
OUTDIR="recon/$TARGET"
mkdir -p $OUTDIR
# Subdomain enum
curl -s "https://dns.projectdiscovery.io/dns/$TARGET/subdomains" \
-H "Authorization: $CHAOS_API_KEY" \
| jq -r '.[]' > $OUTDIR/subdomains.txt
subfinder -d $TARGET -silent | anew $OUTDIR/subdomains.txt
assetfinder --subs-only $TARGET | anew $OUTDIR/subdomains.txt
# Live hosts
cat $OUTDIR/subdomains.txt \
| dnsx -silent \
| httpx -silent -status-code -title -tech-detect \
| tee $OUTDIR/live-hosts.txt
# URL crawl
cat $OUTDIR/live-hosts.txt | awk '{print $1}' \
| katana -d 3 -jc -kf all -silent \
| anew $OUTDIR/urls.txt
echo $TARGET | waybackurls | anew $OUTDIR/urls.txt
gau $TARGET --subs | anew $OUTDIR/urls.txt
# Classify
cat $OUTDIR/urls.txt | gf idor > $OUTDIR/idor-candidates.txt
cat $OUTDIR/urls.txt | gf ssrf > $OUTDIR/ssrf-candidates.txt
cat $OUTDIR/urls.txt | gf xss > $OUTDIR/xss-candidates.txt
cat $OUTDIR/urls.txt | gf sqli > $OUTDIR/sqli-candidates.txt
cat $OUTDIR/urls.txt | grep -E "/api/|/v1/|/v2/|/graphql" > $OUTDIR/api-endpoints.txt
# Nuclei
nuclei -l $OUTDIR/live-hosts.txt \
-t ~/nuclei-templates/ \
-severity critical,high,medium \
-o $OUTDIR/nuclei.txtAfter completing recon, produce a summary:
# Recon Summary: <target> ## Stats - Subdomains: N - Live hosts: N - Total URLs: N - Nuclei findings: N ## Priority Attack Surface 1. [most interesting host] — [tech stack] — [why interesting] 2. ... ## IDOR Candidates (top 5) - [endpoint with ID parameter] ## API Endpoints (top 10) - [path] ## Nuclei Findings - [severity] [template] [host] ## Tech Stack Detected - [host]: [technologies] ## Recommended First Hunt Focus [Which host/endpoint to start with and why]
If the `burp` MCP server is available:
1. Before running subdomain enum, call `burp.get_proxy_history` filtered by target domain 2. Extract already-visited hosts and endpoints from proxy history 3. Cross-reference discovered subdomains: "you've already visited X of these Y live hosts" 4. Prioritize unvisited subdomains in the attack surface ranking 5. If proxy history contains interesting responses (500s, redirects, large JSON), flag them 6. Add any hosts found in proxy history that weren't in subdomain enum results
If Burp MCP is NOT available, skip this section entirely — all recon works without it.
After running, if:
→ Report: "Target surface appears limited. Consider moving to a different target."
AI-powered bug bounty hunting toolkit that works with or without subscription.
Repo: shuvonsec/claude-bug-bounty
Autonomous hunt loop agent. Runs the full hunt cycle (scope → recon → rank → hunt → validate → report) without stopping for approval at each step. Configurable…
Exploit chain builder. Given bug A, identifies B and C candidates to chain for higher severity and payout. Knows all major chain patterns — IDOR→auth bypass,…
Autonomous credential-attack pipeline runner. Chains /wordlist-gen + /osint-employees + /breach-check (data-prep stages, runs without prompts) then HARD STOPS…
Attack surface ranking agent. Takes recon output and hunt memory, produces a prioritized attack plan. Ranks by IDOR likelihood, API surface, tech stack match…
Bug bounty report writer. Generates professional H1/Bugcrowd/Intigriti/Immunefi reports. Impact-first writing, human tone, no theoretical language, CVSS 4.0…
Fast meme coin and token security auditor. Checks 8 token-specific bug classes (hidden mint, honeypot, fee manipulation, LP lock bypass, bonding curve…