Skip to content

Instantly share code, notes, and snippets.

@gavingmiller
Forked from goffinet/jtrinstall.sh
Last active January 5, 2020 02:52
Show Gist options
  • Save gavingmiller/78c0355504ffd9cdd246f56fe47dfdb4 to your computer and use it in GitHub Desktop.
Save gavingmiller/78c0355504ffd9cdd246f56fe47dfdb4 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
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