John the Ripper
Description: used to crack password hashes, including passwords from the passwd and shadow files in Linux
Installation:
sudo apt-get install johnUsage
Obtain Linux password hashes from shadow file:
cat /etc/shadowTo combine passwd and shadow files:
unshadow passwd shadow > HashFileTo run using HashFile as input and rockyou.txt as word list with both files in current directory:
john HashFile --wordlist=rockyou.txt
Last updated