Skip to content

Instantly share code, notes, and snippets.

@GuillaumeDerval
GuillaumeDerval / covidScanJWT.py
Created September 21, 2021 14:02 — forked from ixe013/showJWT.py
Python script to decode a JWT. Works with JWT that are compressed (DEFLATE algorihtm) and incomplete padding
from __future__ import print_function
import base64
import json
import os.path
import pprint
import sys
import time
import zlib