VibeGear
Inspectores

Depurador JWT

Decodifica tokens, ve sus claims, detecta sesiones expiradas.

Tools → Inspect → JWT debugger · Prueba gratuita de 7 días · Premium $9.99 / año

Try it now·runs locally · nothing uploaded
JWT (header.payload.signature)
Decoded
✓ Currently valid
Header
{
  "alg": "HS256",
  "typ": "JWT"
}
Payload
{
  "sub": "1234567890",
  "name": "Alice",
  "iat": 1516239022,
  "exp": 1999999999,
  "roles": [
    "admin"
  ]
}
Annotated claims
  • sub (Subject) = 1234567890
  • name (Name) = Alice
  • iat (Issued at) = 1516239022 · 2018-01-18T01:30:22.000Z (8 years ago)
  • exp (Expiration) = 1999999999 · 2033-05-18T03:33:19.000Z (in 7 years)
  • roles = ["admin"]

Signature is intentionally not verified — that needs a key you haven’t shared. The extension’s JWT signer handles HMAC signing if you have the secret.

Want this and 50 more tools at one keyboard shortcut, with collections and persistence?Install free trial →
Premium

Built for the things AI can’t fake

This tool runs free, right here. The extension adds three things a web widget can’t:

Start 7-day trial

Qué hace

Un JWT es un token firmado y codificado en base64 que las APIs usan para verificar quién eres: tres partes separadas por puntos (header.payload.signature). El header dice cómo se firmó, el payload contiene los "claims" (ID de usuario, expiración, roles), y la firma evita que se falsifiquen tokens.

El depurador JWT decodifica header + payload para que puedas leer los claims. Los claims estándar como exp (expiración) e iat (emitido) reciben fechas legibles; los tokens expirados se marcan en rojo.

Por qué usar el depurador jwt de VibeGear

Cómo usarlo

  1. 1Tools → Inspect → JWT debugger.
  2. 2Pega tu JWT.
  3. 3Header, payload y claims anotados aparecen al instante.

Preguntas frecuentes

¿Verifica la firma?

No — y lo decimos claramente. Verificar requiere el secreto o la clave pública, que no nos has dado. Mostrar un "verificado" falso desde el cliente sería engañoso. Usa el firmador JWT si tienes el secreto y quieres firmar tokens nuevos.

Premium

Una instalación. Todas las herramientas.

7 días gratis, luego VibeGear Premium $9.99 / €9.99 al año. Todo se ejecuta localmente.

Instalar y empezar prueba →

Idioma