JWT 解碼器:快速上手指南
第一次使用就能成功所需的全部內容:該貼上什麼、哪個選項真正重要、以及如何讀懂結果。
使用方法
- 開啟工具,將內容貼上到左側輸入框。
- 只調整任務真正需要的選項——多數情況下預設值就是正確的。
- 在右側檢視結果,輸入時結果會即時更新。
- 用「複製」取走結果,或用「下載」儲存為檔案。
範例
Decoded without verification.
輸入
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30
輸出 — 搜尋結果
<table class="tb-table"><tr><th colspan="2">Header</th></tr><tr><td>alg</td><td><code>"HS256"</code></td></tr><tr><td>typ</td><td><code>"JWT"</code></td></tr></table><table class="tb-table"><tr><th colspan="2">Payload</th></tr><tr><td title="Subject">sub <small>(Subject)</small></td><td><code>1234567890</code></td></tr><tr><td title="">name</td><td><code>John Doe</code></td></tr><tr><td title="">admin</td><td><code>true</code></td></tr><tr><td title="Issued at">iat <small>(Issued at)</small></td><td><code>1516239022 → 2018-01-18T01:30:22.000Z (EXPIRED/past)</code></td></tr></table><p class="tb-note">Algorithm: <b>HS256</b> · Signature present: yes (not verified — verification needs the secret/public key) · no exp claim</p>
執行
說明
Inspect JWT header, payload and signature metadata.
相關工具
Strong 密碼產生器Crypto-random passwords with full policy control.密碼短語產生器Diceware-style memorable passphrases.密碼 Strength 測試器Estimate entropy and crack-time of a password.APIKey 產生器Random hex / Base64 secrets of any length.基礎 AuthHeader 產生器Build and decode Authorization: Basic headers.檢查碼驗證器Compare a file hash against the published digest.