Last active
April 1, 2025 09:39
-
-
Save Ajnasz/fe28b3e51c39be042f040934f6d4efae to your computer and use it in GitHub Desktop.
jwt decode shell script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Decode JWT token | |
# Usage: echo <jwt_token> | jwtdecode | |
# requires jq and coreutils | |
while read -r input;do | |
echo "$input" | cut -d . -f 1,2 | tr '.' '\n' | \ | |
while read -r str;do | |
echo "$str" | basenc -d --base64url | jq . | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice, thank you!