Monu Tools

JWT डिकोडर

JSON Web Token को डिकोड करके उसके हेडर और पेलोड का निरीक्षण करें, मानव-पठनीय समाप्ति और जारी करने के समय के साथ। पूरी तरह आपके ब्राउज़र में चलता है; टोकन कभी अपलोड नहीं होते।

JWT Decoder का उपयोग कैसे करें

  1. 01

    header.payload.signature फॉर्म में JWT पेस्ट करें।

  2. 02

    डिकोड किए गए हेडर और पेलोड को फॉर्मेट किए JSON के रूप में पढ़ें।

  3. 03

    समाप्ति और जारी करने के समय जांचें, और क्या टोकन समाप्त हो गया है।

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.

अक्सर पूछे जाने वाले सवाल

क्या यह हस्ताक्षर सत्यापित करता है?

नहीं। यह हेडर और पेलोड डिकोड और प्रदर्शित करता है। हस्ताक्षर सत्यापित करने के लिए साइनिंग सीक्रेट या पब्लिक की चाहिए, जिसे आपको किसी वेब टूल में पेस्ट नहीं करना चाहिए।

डिकोडिंग और सत्यापन में क्या अंतर है?

डिकोडिंग Base64url हेडर और पेलोड पढ़ती है, जो एन्क्रिप्टेड नहीं है। सत्यापन साइनिंग की से हस्ताक्षर की दोबारा गणना करता है ताकि सिद्ध हो सके कि टोकन प्रामाणिक और अपरिवर्तित है।

क्या अपना टोकन यहां पेस्ट करना सुरक्षित है?

डिकोडिंग पूरी तरह आपके ब्राउज़र में होती है, इसलिए टोकन अपलोड नहीं होता। फिर भी, लाइव टोकन को सीक्रेट मानें और साझा कंप्यूटर पर पेस्ट करने से बचें।

exp, iat और nbf का क्या मतलब है?

ये मानक क्लेम हैं: iat जारी किए जाने का समय है, nbf वह समय है जब से वैध है, और exp समाप्ति समय है। डिकोडर इन Unix टाइमस्टैम्प को पठनीय स्थानीय समय में बदलता है।

क्या मैं समाप्त हो चुका टोकन डिकोड कर सकता/सकती हूं?

हां। समाप्ति टोकन के डिकोड होने के तरीके को नहीं बदलती, इसलिए आप समाप्त टोकन के क्लेम का निरीक्षण कर सकते हैं और देख सकते हैं कि यह ठीक कब समाप्त हुआ।

बिना की के मेरा पेलोड पठनीय क्यों है?

JWT साइन किया हुआ है, एन्क्रिप्टेड नहीं। पेलोड केवल Base64url-एन्कोडेड है, इसलिए कोई भी इसे पढ़ सकता है। JWT पेलोड में कभी सीक्रेट न डालें।

स्रोत

इस टूल को एम्बेड करें

इस टूल को अपनी वेबसाइट में जोड़ें। नीचे दिया स्निपेट कॉपी करें; यह अपने आप अपडेट रहता है।

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

संबंधित टूल