Skip to content

Instantly share code, notes, and snippets.

@godevnet
Last active October 28, 2019 03:30
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save godevnet/36e948a7d04702ec361d to your computer and use it in GitHub Desktop.
Save godevnet/36e948a7d04702ec361d to your computer and use it in GitHub Desktop.
John the Ripper 1.8.0 Installation for Centos 7
#/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