apk-redteam-pipeline
End-to-end Android APK red-team pipeline — automated APK acquisition (Play Store + apkpure + apkmirror fallback), jadx decompilation, secret/URL/JWT/Firebase…
Hunting skill for oauth vulnerabilities. Built from 19 public bug bounty reports. Use when hunting oauth on any target.
$ npx -y skills add elementalsouls/Claude-BugHunter --skill hunt-oauth --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hunt-oauthContext preview
The summary Claude sees to decide when to auto-load this skill.
Hunting skill for oauth vulnerabilities. Built from 19 public bug bounty reports. Use when hunting oauth on any target.
name: hunt-oauth description: Hunting skill for oauth vulnerabilities. Built from 19 public bug bounty reports. Use when hunting oauth on any target. sources: github, hackerone_public, salt_labs, descope, detectify_labs, harel_research report_count: 22
OAuth vulnerabilities are among the highest-value bug classes in web security because they directly enable **account takeover, session theft, and authentication bypass** — the trifecta that programs pay most for.
**Highest-value targets:**
**Asset types that pay most:**
**Typical payouts:** $500–$20,000+ depending on program; account takeover findings often hit max bounty.
---
/oauth/authorize /oauth/token /connect/authorize /auth/callback /oauth/callback /login?redirect_uri= /signin?next= /auth?return_to= /oauth/redirect /push_notification_webview
Location: https://accounts.example.com/oauth/... Set-Cookie: oauth_state= WWW-Authenticate: Bearer Content-Type: application/json (with access_token in body)
redirect_uri client_id response_type=code response_type=token state= nonce= oauth_token access_token push_notification_webview deeplink intent://
---
1. **Enumerate all OAuth entry points**
2. **Map the full OAuth flow**
3. **Test `redirect_uri` validation (highest yield)**
4. **Test `state` parameter (CSRF)**
5. **Test `nonce` parameter (replay/bypass)**
6. **Test authentication step completeness**
7. **Hunt referrer leakage**
8. **Test mobile deep links**
9. **Test misconfigured client credentials**
10. **Verify and document**
---
# Host confusion https://evil.com#legit.com https://legit.com.evil.com https://legit.com@evil.com # Path traversal https://legit.com/oauth/callback/../../redirect?url=https://evil.com # Open redirect chain (find open redirect on legit domain first) https://legit.com/logout?next=https://evil.com # Parameter pollution ?redirect_uri=https://legit.com/cb&redirect_uri=https://evil.com/cb # URL encoded slashes https://legit.com%2F@evil.com https://legit.com%252F..%252F..evil.com
# Step 1: Initiate OAuth flow, capture state value # Step 2: Drop request, use attacker account's link with victim's session curl -v "https://target.com/
A self-contained Claude skill bundle for bug hunting and external red-team work · 83 skills · 15 slash commands · 681 disclosed-report patterns (433 now individually cited & auditable) across 24 core vulnerability classes · enterprise identity +
Repo: elementalsouls/Claude-BugHunter
End-to-end Android APK red-team pipeline — automated APK acquisition (Play Store + apkpure + apkmirror fallback), jadx decompilation, secret/URL/JWT/Firebase…
Local-tooling companion to the bug-bounty orchestrator — carries the SAME complete bug-bounty workflow, but reach for THIS variant when you also need to…
Use at the START of any bug bounty hunting session, when switching targets, or when feeling lost about what to do next. Master orchestrator that combines the…
Complete bug bounty workflow — recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed…
Bugcrowd-specific reporting tactics complementing report-writing: VRT category search-and-fallback strategy when no exact match exists, manual severity…
Cloud IAM red-team attack chain across AWS, Azure, GCP — focused on EXTERNAL exploitation paths and post-credential-discovery privilege analysis. Covers IAM…