انتقل إلى المحتوى

فك JWT

عرض رأس JWT والحمولة كـ JSON (دون التحقق من التوقيع).


    
    

About this tool

فك JSON Web Token لفحص الرأس والحمولة دون إرساله لأي موقع. الطريقة الآمنة لمعرفة claims التي يحملها الرمز.

Why use it

  • عرض الرأس والحمولة في JSON مقروء.
  • إظهار claims قياسية مثل انتهاء الصلاحية والمُصدر.
  • الفك في متصفحك: الرمز لا يُرسل.

Common use cases

  • تصحيح تدفق auth بفحص claims الرمز.
  • تأكيد وقت انتهاء الصلاحية أثناء الاختبار.
  • فحص scopes التي يمنحها الرمز.

Tips

  • الفك ليس تحققاً: لا يفحص التوقيع.
  • لا تلصق رموز إنتاج في أدوات لا تثق بها؛ هذه تعمل محلياً.
كيفية الاستخدام
  1. الصق JWT.
  2. يظهر الرأس والحمولة.
  3. التوقيع غير مُتحقَّق.
الأسئلة الشائعة
What does the JWT decoder show?
It decodes the header and payload so you can read the claims inside a JSON Web Token.
Is my token sent to a server?
No. Decoding happens in your browser, so sensitive tokens stay on your device.
Does it verify the signature?
It decodes and displays the contents; it does not validate the signature, which needs the secret key.
Can I see when a token expires?
Yes, timestamp claims like exp and iat are shown so you can check validity.
Is the payload encrypted?
No. A standard JWT payload is only Base64-encoded, so never put secrets in it.
Why are there three parts?
A JWT is header.payload.signature, each Base64url-encoded and separated by dots.