auth-bypass-hunter

Tests OTP, OAuth, session, and API endpoints for authentication bypass vulnerabilities.

1|Updated Aug 11, 2026
One-click install
npx skills add https://github.com/Maybe4a6f7365/agentic-bug-bounty-framework --skill auth-bypass-hunter-maybe4a6f7365
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: auth-bypass-hunter
Source: https://github.com/Maybe4a6f7365/agentic-bug-bounty-framework/tree/main/skills/auth-bypass-hunter
Command: npx skills add https://github.com/Maybe4a6f7365/agentic-bug-bounty-framework --skill auth-bypass-hunter-maybe4a6f7365

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires requests.

What problem does it solve? Security researchers need a systematic way to determine whether a target server actually establishes the claimed identity before granting access, rather than guessing at authentication flaws or filing false-positive reports. ## Core Features & Use Cases - Authentication State Modeling: Maps states and transitions (anonymous, OTP-pending, fully authenticated) and tests one illegal edge at a time with two disposable accounts. - Targeted Test Recipes: Covers OTP leakage, pre-2FA session promotion, trusted-device binding after identity change, OAuth trust parameter tampering, null components in composite bot credentials, and missing middleware on private routes. - Negative Controls & Version Boundaries: Applies a 12-category stop-condition taxonomy with real HackerOne report anchors, plus OSV/GHSA version tables for JWT, SAML, and OAuth libraries to filter already-fixed flaws. - Use Case: During an authorized bug-bounty engagement, you find a session cookie issued before OTP completion; use this Skill to test whether removing one cookie still grants access to protected endpoints, then validate the result against the false-positive checklist before reporting. ## Quick Start Ask the AI to hunt for authentication bypass on the in-scope target's OTP and OAuth flows using two controlled test accounts.

Frequently Asked Questions about auth-bypass-hunter

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I test for OTP and 2FA bypass vulnerabilities?

Request an OTP for a controlled account and inspect the response body and headers for leaked codes, then test whether a session issued before OTP completion can access protected endpoints. Never brute-force values; submit at most one known-invalid code if scope rules permit.

What is the difference between authentication bypass and privilege escalation?

Authentication bypass means the server fails to establish the claimed identity at all, such as accepting a missing or forged token. Privilege escalation means an already-authenticated user exceeds their assigned role, which is handled by a separate privesc-hunter skill.

How do I avoid false positives when reporting authentication bypass?

Positive proof requires an authenticated identity, protected data, or an action attributed to the victim without the required proof. Reject cases like public data on private-labeled routes, cookies blocked on protected endpoints, or 200 responses containing error flags.

Does this testing approach work against OAuth and SAML implementations?

Yes, it covers OAuth trusted-app parameter tampering, consent bypass, and token subject verification, plus SAML signature issues via the version boundary table. Check the target's library versions against OSV/GHSA fixed boundaries before testing.

When should I not file an authentication bypass finding?

Do not file when the behavior is expected product design, when a control exists elsewhere that blocks the action, when the flaw lacks attacker control, or when impact falls below the program's threshold. Apply the full negative-control taxonomy and the scope and reportability decision split first.