Skip to content

Instantly share code, notes, and snippets.

@dlevray
Forked from godevnet/jtrinstall.sh
Last active September 13, 2015 20:12
Show Gist options
  • Select an option

  • Save dlevray/be7ca32b32fb97b35b5e to your computer and use it in GitHub Desktop.

Select an option

Save dlevray/be7ca32b32fb97b35b5e 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