Creates script for printing jwt web tokens
This commit is contained in:
parent
516af805c3
commit
d106799a8b
1 changed files with 11 additions and 0 deletions
11
bin/.bin/webtest/jwtcat
Executable file
11
bin/.bin/webtest/jwtcat
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
i=0
|
||||
|
||||
cat - | tr '.' '\n' | while read line; do
|
||||
[ "$i" -eq 0 ] && echo -e "Header:\n-------"
|
||||
[ "$i" -eq 1 ] && echo -e "Body:\n-----"
|
||||
[ "$i" -eq 2 ] && break
|
||||
echo "$line" | base64 -d 2> /dev/null | jq
|
||||
i=$((i+1))
|
||||
done
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue