JWT
JWT Attacks
Description
Example with Scenario
Payloads and Test Cases
{ "alg": "none" }{ "header": { "alg": "HS256", "typ": "JWT" }, "payload": { "user": "admin" }, "signature": "generated_signature" }{ "header": { "alg": "HS256", "typ": "JWT" }, "payload": { "user": "attacker", "admin": true }, "signature": "generated_signature" }
Mitigation
Last updated