Monu Tools

JWT çözücü

Bir JSON Web Token'ı çözerek başlığını ve yükünü, insan tarafından okunabilir son kullanma ve verme zamanlarıyla inceleyin. Tamamen tarayıcınızda çalışır; jeton asla yüklenmez.

JWT çözücü nasıl kullanılır

  1. 01

    header.payload.signature biçiminde bir JWT yapıştırın.

  2. 02

    Çözülmüş başlığı ve yükü biçimlendirilmiş JSON olarak okuyun.

  3. 03

    Son kullanma ve verilme zamanlarını ve jetonun süresinin dolup dolmadığını kontrol edin.

What a JWT decoder shows you

A JSON Web Token has three parts separated by dots: a Base64URL-encoded header, a Base64URL-encoded payload, and a signature. This decoder splits and decodes the first two parts instantly in your browser, so you can read what a token actually contains.

The most common use is inspecting a token an API returned: who issued it (iss), when it expires (exp), what permissions it carries (scope or roles), and whether it has already expired.

How the decoding works

The tool takes the header and payload segments and decodes their Base64URL contents back into readable JSON. Nothing is sent anywhere: the split and decode happen locally the moment you paste a token.

Reading expiry and timestamps

The expiry is shown in readable local time, not a raw Unix timestamp, so you can see at a glance whether the token is still valid. The same applies to other time claims like iat and nbf, which become dates you can actually interpret.

Decoding is not verifying

This tool decodes and displays, it does not verify the signature against a secret key. Anyone can read a JWT payload without a key, because only the signature is protected, not the contents.

For signature verification you need the signing secret or public key, which should never be entered into a browser-based tool. Do not paste secrets here.

Privacy

The token never leaves your device. All decoding runs in your browser, so nothing you paste is uploaded or stored.

Sıkça sorulan sorular

İmzayı doğrular mı?

Hayır. Başlığı ve yükü çözer ve görüntüler. İmzayı doğrulamak, herhangi bir web aracına yapıştırmamanız gereken imzalama gizli anahtarını veya açık anahtarı gerektirir.

Çözme ile doğrulama arasındaki fark nedir?

Çözme, şifrelenmemiş olan Base64url başlığını ve yükünü okur. Doğrulama, jetonun gerçek ve değiştirilmemiş olduğunu kanıtlamak için imzayı anahtarla yeniden hesaplar.

Jetonumu buraya yapıştırmak güvenli mi?

Çözme tamamen tarayıcınızda gerçekleşir, bu yüzden jeton yüklenmez. Yine de canlı jetonları gizli olarak değerlendirin ve onları paylaşılan bilgisayarlara yapıştırmaktan kaçının.

exp, iat ve nbf ne anlama gelir?

Bunlar standart talep alanlarıdır: iat verilme zamanı, nbf geçerli olmadan önce ve exp son kullanma zamanıdır. Çözücü bu Unix zaman damgalarını okunabilir yerel zamana dönüştürür.

Süresi dolmuş bir jetonu çözebilir miyim?

Evet. Süre dolması bir jetonun nasıl çözüldüğünü değiştirmez, bu yüzden süresi dolmuş bir jetonun taleplerini inceleyebilir ve tam olarak ne zaman geçersiz olduğunu görebilirsiniz.

Yüküm neden anahtar olmadan okunabilir?

Bir JWT imzalanmıştır, şifrelenmemiştir. Yük yalnızca Base64url ile kodlanmıştır, bu yüzden herkes onu okuyabilir. Bir JWT yüküne asla gizli bilgi koymayın.

Kaynaklar

Bu aracı göm

Bu aracı kendi web sitenize ekleyin. Aşağıdaki kod parçacığını kopyalayın; otomatik olarak güncel kalır.

<iframe src="https://monu.tools/embed/tr/jwt-decoder" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>

İlgili araçlar