Last active
October 28, 2019 03:30
-
-
Save godevnet/36e948a7d04702ec361d 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