How to Install “John the Ripper” On Linux – A Free Password Cracker Tool

John the ripper

Security of your important data is the most crucial concern, John the Ripper is a free tool widely used by ethical hackers and security testers to check and crack passwords. It lets you identify weak passwords and take measures to harden your security.  Due to the popularity of this tool, it is part of security focused Linux distributions like Kali Linux. Let’s see how we can install and use this tool on Linux operating system. We tested the following mentioned installation method on Ubuntu 15.04, Fedora 21 and Linux Mint.

Installing John the Ripper on Ubuntu 15.04/Fedora 21, Linux Mint

The following installation method should work for most Linux distributions, launch your system terminal and run following command to change your working directory to /opt.

 cd /opt 

Here run following command to download the binary zip for John the Ripper.

 wget http://www.openwall.com/john/g/john-1.7.9-jumbo-7.tar.gz  

Once the download is complete, run following command to extract the downloaded file.

 tar -xvzf john-1.7.9-jumbo-7.tar.gz 

Rename the extracted directory to something more meaningful.

 mv john-1.7.9-jumbo-7 john 

If you  have 64-bit Linux operating system, run following command to install it.

 make clean linux-x86-64 

If your operating system architecture is 32-bit, run following command to install John the Ripper.

 make clean linux-x86-sse2 

Congratulations, John the Ripper has been installed on your Linux system now. This is how successful installation process should look like.

John the ripper installation

In order to run this tool, go to the “run” directory:

 cd /opt/john/run 

Here run following command to bring John the Ripper into action.

 ./john 

John the ripper

Follow the official John the ripper page for details about how to crack passwords using this tool.

Conclusion

John the Ripper is available in both free and paid versions; Paid version is known as John the Ripper Pro and comes with many advanced features. But free version should suffice for the needs of most of the users.