Skip to content

Instantly share code, notes, and snippets.

View MohRaza's full-sized avatar

Mo Raza MohRaza

View GitHub Profile
@ixe013
ixe013 / showJWT.py
Last active September 14, 2023 18:23
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