JWT Analyzer
Category: API / auth
Parses header/payload, checks algorithm, expiry claims, and classic footguns (alg=none, weak HMAC, algorithm confusion patterns) without needing the signing secret for decode.
Inputs
A JWT string (three base64url segments).
How to run it
- Open Security tools → JWT Analyzer.
- Paste token → analyze.
- Fix issues in your auth service before a full API scan.
Output
Decoded JSON + weakness list.
Notes
- Signature verification requires the secret/JWKS — the tool still flags structural issues without it.
Related
- /scans/api-scan/
- /tools/graphql-scanner/
← Back to Security tools overview