Skip to content

Commit

Permalink
fix: show content of a jwt token
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Oct 9, 2023
1 parent 6b7fd6d commit f60ff52
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Misc/jwt-analyzing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Show content of a JWT token

```bash
jwt="ey...."
jq -R 'split(".") | .[1] | @base64d | fromjson' <<< "$jwt"
```

0 comments on commit f60ff52

Please sign in to comment.