Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 557 Bytes

File metadata and controls

19 lines (13 loc) · 557 Bytes

JWT Decoder CLI

Command-line tool to decode and inspect JWT tokens without verifying the signature. Displays claims with color-coded expiration status (green for valid, red for expired, yellow for missing expiration).

Usage

# Default: human-readable claims with expiration status
python jwtr.py eyJhbGciOiJIUzI1NiIs...

# Accepts 'Bearer' prefix and spaces
python jwtr.py Bearer eyJhbGciOiJIUzI1NiIs...

# Raw decoded dict
python jwtr.py --raw eyJhbGciOiJIUzI1NiIs...

# Pretty-printed JSON
python jwtr.py --json eyJhbGciOiJIUzI1NiIs...