π¦ ClawHub
Jwt Toolkit
by @johnnywang2001
Decode, inspect, and validate JWT (JSON Web Token) tokens from the command line. Shows header, payload, algorithm, expiry status, and known claim labels. Use...
π‘ Examples
# Decode a JWT token
python3 scripts/jwt_decode.py eyJhbGciOiJIUzI1NiIs...Read token from file
python3 scripts/jwt_decode.py --file token.txtRead from stdin (pipe from curl, etc.)
echo "eyJ..." | python3 scripts/jwt_decode.py --stdinJSON output for scripting
python3 scripts/jwt_decode.py eyJ... --format jsonAlso handles "Bearer " prefix automatically
python3 scripts/jwt_decode.py "Bearer eyJhbGciOiJIUzI1NiIs..."
TERMINAL
clawhub install jwt-toolkit