What problem does it solve?
It helps you identify and validate common API security misconfigurations in authentication and authorization flows, especially where attackers can escalate privileges or read sensitive data across origins.
Core Features & Use Cases
- Mass Assignment Testing: Detects whether server-side handlers blindly apply untrusted fields (e.g., role, is_admin, verified) during profile/account update or reset flows.
- JWT Vulnerability Hunting: Checks for
alg=none, algorithm confusion (RS256↔HS256), weak HMAC/forgery conditions, and token parsing issues that enable impersonation.
- Prototype Pollution Detection: Finds unsafe JSON/object merging patterns (e.g.,
__proto__ injection) that can poison prototypes and reach sensitive sinks.
- CORS Exploitability Validation: Verifies whether credentialed cross-origin requests are practically exploitable via wildcard/null/regex origin handling or missing origin checks.
- HTTP Verb Tampering: Looks for GET-bypass-CSRF,
X-HTTP-Method-Override, and enabled/unsafe methods such as TRACE.
Use case: When an API seems to have inconsistent access control, run this Skill to triage whether the weakness is mass assignment, JWT forgery, prototype pollution, CORS credential leakage, or method-based bypass.
Quick Start
Ask the skill to generate an actionable hunting plan and validation steps for a target API endpoint covering mass assignment, JWT weaknesses, prototype pollution vectors, and credentialed CORS behavior.