Skip to content

Json Web Token (JWT)

Encode a token
import jwt
secret = '<secret>'
jwt.encode({"username":"admin"}, secret, algorithm='HS256')

Tools

https://jwt.io/

Website that decodes and displays the contents of a JWT token.

https://github.com/ticarpi/jwt_tool

Scan for JWT vulnerabilities in a specific token or implementation.