
Bug-Bounty-Audit-Skripte — API-Schlüssel-Validierung, OAuth-Fehlkonfigurationsprüfungen, Passwort-Reset-Auditing.
Bug Bounty Audit Framework — drei fokussierte Module für gängige Schwachstellenklassen.
╔═╗╔═╗╔╗ ╦═╗╔═╗ ╔═╗╦ ╦╔╦╗╦╔╦╗
║ ║ ║╠╩╗╠╦╝╠═╣ ╠═╣║ ║ ║║║ ║
╚═╝╚═╝╚═╝╩╚═╩ ╩ ╩ ╩╚═╝═╩╝╩ ╩
| Modul | Getestet wird |
|---|---|
apikeys | Stripe, SendGrid, GitHub (classic & fine-grained), GitLab, OpenAI, Anthropic, Slack, Mailgun, Firebase, NPM, AWS, Shopify, Twilio |
oauth | Implicit Flow, PKCE-Erzwingung, State-Parameter, Redirect-URI-Bypass |
pwreset | Host-Header-Injection, Benutzername-Enumeration, Ratenbegrenzung |
pip install -e .
Nach der Installation ist cobraaudit global verfügbar.
# Test a single API key
cobraaudit apikeys --key sk_live_xxxx
# Scan a file for API keys (e.g. NextRecon JS output)
cobraaudit apikeys --file output.js
# Scan a live URL for embedded keys
cobraaudit apikeys --target https://target.com/app.js
# OAuth audit
cobraaudit oauth --target https://target.com
cobraaudit oauth --target https://target.com --client-id myapp
# Password reset audit
cobraaudit pwreset --target https://target.com --email [email protected]
cobraaudit pwreset --target https://target.com --email [email protected] --reset-endpoint /forgot-password
# Run all modules
cobraaudit all --target https://target.com --email [email protected]
pwreset erfordert Burp Collaborator oder interactsh, um den Callback in der Reset-E-Mail zu bestätigen.--client-id — ohne eine solche können die Ergebnisse unklar sein.