Inspect, decode, and debug JSON Web Tokens (JWT) or craft and sign new tokens locally with HMAC SHA-256 with complete client-side privacy.
Loading tool...
Find out how JWTs work, how to check them, and how to keep your data safe.
A safe way to share user login information between a website and a server.
JWT Security Hub is a privacy-first utility for decoding, inspecting, and verifying JSON Web Tokens (JWT) or crafting and cryptographically signing new tokens locally in your browser.
Parses Base64URL-encoded header, payload, and signature segments of JWT strings in browser memory. Detects token expiration (exp), not-before (nbf), and issued-at (iat) timestamps with real-time countdowns. Supports HMAC SHA-256 (HS256) signature verification and creation via Web Crypto API.
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5cHeader: {"alg":"HS256","typ":"JWT"}
Payload: {"sub":"1234567890","name":"John Doe","admin":true,"iat":1516239022}Decodes Base64URL claims into readable JSON without network communication.
Yes! Unlike popular cloud JWT decoders that may log payloads and sensitive session tokens, Outlivo parses and verifies tokens 100% locally inside your browser.
Yes. The JWT Creator tab lets you customize headers and payload claims, set expiration times, and sign valid tokens using client-side cryptographic hashing.
Yes, the debugger automatically highlights expired exp timestamps, issued-at times (iat), and not-before dates (nbf).