|
1 | 1 | # JWT cracker
|
2 | 2 |
|
3 | | -A JWT brute-force cracker written in C. |
| 3 | +A JWT brute-force cracker written in C. If you are very lucky or have a huge computing power, this program should find the secret key of a JWT token, allowing you to forge valid tokens. This is for testing purposes only, do not put yourself in trouble :) |
4 | 4 |
|
5 | 5 | I used the [Apple Base64 implementation](https://opensource.apple.com/source/QuickTimeStreamingServer/QuickTimeStreamingServer-452/CommonUtilitiesLib/base64.c) that I modified slightly.
|
6 | 6 |
|
7 | 7 | ## Compile
|
8 | 8 |
|
9 | 9 | Make sure you have openssl's headers installed.
|
10 | | -On Ubuntu youcan install them with `apt-get install libssl-dev` |
| 10 | +On Ubuntu you can install them with `apt-get install libssl-dev` |
11 | 11 |
|
12 | 12 | ```
|
13 | 13 | make
|
|
0 commit comments