arsenal
Show which external bug-bounty tools are installed on this machine and print install hints for the missing ones. Curated from high-signal repos. Use to…
Scan a host for open ports and flag the NON-HTTP services the HTTP-only recon pipeline can't see (SSH, databases, Redis, Docker API, RDP). Usage: /portscan <host> [--top 1000] [-p 22,6379] | /portscan -l hosts.txt
$ npx -y skills add shuvonsec/claude-bug-bounty --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/portscanContext preview
What this command does when you run it.
Scan a host for open ports and flag the NON-HTTP services the HTTP-only recon pipeline can't see (SSH, databases, Redis, Docker API, RDP). Usage: /portscan <host> [--top 1000] [-p 22,6379] | /portscan -l hosts.txt
description: Scan a host for open ports and flag the NON-HTTP services the HTTP-only recon pipeline can't see (SSH, databases, Redis, Docker API, RDP). Usage: /portscan <host> [--top 1000] [-p 22,6379] | /portscan -l hosts.txt
The main recon pipeline is HTTP-only (httpx / nuclei / katana), so open ports that don't speak HTTP are invisible. This maps the full service surface and pulls the interesting, often-forgotten ports to the top — the ones that turn into instant wins.
/portscan target.com # top-100 ports /portscan target.com --top 1000 /portscan target.com -p 22,6379,27017 /portscan -l recon/target.com/subdomains/resolved.txt --json /portscan target.com --smap # passive (Shodan) — no packets sent
Run directly:
tools/port_scanner.py target.com --top 1000
Wraps ProjectDiscovery's **naabu** (fast SYN/CONNECT scan), falling back to **smap** (Shodan-backed, sends no packets — handy when active scanning is out of scope). Both are registered in `tools/external_arsenal.sh`. If neither is installed the command prints install hints and exits cleanly.
Any open, non-web port with a known attack surface, e.g.:
| Port | Service | Why it matters | |---|---|---| | 6379 | redis | unauth → RCE / full data dump | | 2375 | docker | unauth Docker API → instant host RCE | | 27017 | mongodb | unauth → database dump | | 9200 | elasticsearch | unauth → index dump | | 3306 / 5432 / 1433 | mysql / postgres / mssql | database exposed to the internet | | 3389 | rdp | weak creds / BlueKeep-class | | 445 | smb | null session / EternalBlue-class |
Web ports (80/443/8080/…) are counted but not flagged — the rest of the pipeline already covers those.
`/portscan` → non-web service found → pivot with the matching technique (e.g. unauth Redis → `CONFIG SET` webshell, exposed DB → dump, Docker API → container escape). Feed resolved subdomains from `/recon` straight in with `-l`.
AI-powered bug bounty hunting toolkit that works with or without subscription.
Repo: shuvonsec/claude-bug-bounty
Show which external bug-bounty tools are installed on this machine and print install hints for the missing ones. Curated from high-signal repos. Use to…
Run autonomous hunt loop on a target — scope check → recon → rank surface → hunt → validate → report with configurable checkpoints. Usage: /autopilot…
HIBP k-anonymity check on a password wordlist. Enriches each password with its breach count, ranks DESC. Free API (no key), only first 5 chars of SHA-1 sent.…
Probe a 403/401 endpoint with the most-paid bypass tricks (header injection, path encoding, method swap, WAF fingerprint, vendor-specific). Wraps byp4xx when…
Build an exploit chain — given bug A, finds B and C to combine for higher severity and payout. Knows common chain patterns: IDOR→ATO, SSRF→cloud metadata,…
Sweep cloud assets for a target — public S3/Azure/GCP buckets via S3Scanner and cloud_enum, plus CloudFlare-bypassed origin IPs via CloudFail (or built-in…