-
-
Save dlevray/be7ca32b32fb97b35b5e to your computer and use it in GitHub Desktop.
John the Ripper 1.8.0 Installation for Centos 7
This file contains hidden or 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 | |
| yum -y install wget gpgme | |
| yum -y group install "Development Tools" | |
| cd | |
| wget http://www.openwall.com/john/j/john-1.8.0.tar.xz | |
| wget http://www.openwall.com/john/j/john-1.8.0.tar.xz.sign | |
| wget http://www.openwall.com/signatures/openwall-signatures.asc | |
| gpg --import openwall-signatures.asc | |
| gpg --verify john-1.8.0.tar.xz.sign | |
| tar xvfJ john-1.8.0.tar.xz | |
| cd john-1.8.0/src | |
| make clean linux-x86-64 | |
| cd ../run/ | |
| ./john --test | |
| #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