-
-
Save gavingmiller/78c0355504ffd9cdd246f56fe47dfdb4 to your computer and use it in GitHub Desktop.
John the Ripper 1.8.0 Installation for Centos 7
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/bash | |
# Centos 7 John the Ripper Installation | |
git clone https://github.com/magnumripper/JohnTheRipper.git | |
cd JohnTheRipper/src | |
git checkout bleeding-jumbo | |
./configure | |
make -s clean && make -sj4 | |
cd ../run/ | |
./john --test | |
# To break jwt | |
./john jwt.john | |
# password dictionnary download | |
# wget -O - http://mirrors.kernel.org/openwall/wordlists/all.gz | gunzip -c > openwall.dico |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment