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 an endpoint for CORS misconfiguration — arbitrary-origin reflection, null-origin trust, credential exposure, suffix/prefix regex bypass, scheme downgrade. Usage: /cors <url> [--cookie "session=..."] | /cors -l urls.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.
/corsContext preview
What this command does when you run it.
Scan an endpoint for CORS misconfiguration — arbitrary-origin reflection, null-origin trust, credential exposure, suffix/prefix regex bypass, scheme downgrade. Usage: /cors <url> [--cookie "session=..."] | /cors -l urls.txt
description: Scan an endpoint for CORS misconfiguration — arbitrary-origin reflection, null-origin trust, credential exposure, suffix/prefix regex bypass, scheme downgrade. Usage: /cors <url> [--cookie "session=..."] | /cors -l urls.txt
Find CORS misconfigurations that let an attacker page read authenticated responses cross-origin. Sends a battery of crafted `Origin` headers and inspects the `Access-Control-Allow-Origin` / `Access-Control-Allow-Credentials` reply.
/cors https://api.target.com/me /cors https://api.target.com/me --cookie "session=abcd1234" /cors -l recon/target.com/urls/api-endpoints.txt --json
Run directly:
tools/cors_scanner.py https://api.target.com/me --cookie "session=..."
| Origin sent | Detects | |---|---| | `https://evil.example` | arbitrary-origin reflection | | `null` | sandboxed-iframe / data: URI trust | | `https://api.target.com.evil.example` | weak `endsWith` (suffix) regex | | `https://notapi.target.com` | weak `startsWith` (prefix) regex | | `https://attacker.api.target.com` | blanket subdomain trust (chains w/ takeover) | | `http://api.target.com` | https→http scheme downgrade |
`ACAO: <attacker>` + `ACAC: true` means `fetch(url, {credentials:'include'})` from an attacker page returns the victim's authenticated response body — full account-data exfil. Pass `--cookie` with a live session to confirm the credentialed path.
CORS data-read → harvest CSRF token / PII / API keys from the response → escalate to ATO. A subdomain-trust CORS bug + a [subdomain takeover](takeover.md) on that subdomain = a clean credentialed-read exploit.
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…