Home How To/Guides How to Install Hashcat 6.2.5 on Ubuntu 18?

How to Install Hashcat 6.2.5 on Ubuntu 18?

by Ahsan MuGhaL
3 minutes read
How to Install Hashcat 6.2.5 on Ubuntu 18

How to Install Hashcat 6.2.5 on Ubuntu 18? A hashcat is an essential tool in your toolbox. There are over 300 algorithms. There are numerous articles available online that describe how to install hashcat on various platforms like Linux, Windows, UNIX, BSD, and others. The main focus of this article, however, is how to install hashcat 6.2.5 on Ubuntu 18.

You can get this version of hashcat by following the simple procedures outlined below. Installing it gives you access to more interesting features and helps you to explore new things.

Hashcat is an excellent tool to have on hand, at the very least on your computer. I’ve already written several Hashcat tutorials, but today’s topic will focus on installation, specifically on a Linux distribution like Ubuntu.

Given that Hashcat is now accessible in the default repositories, installing it via package management (APT) is the most straightforward method. The installation command would be sudo apt install hashcat.

Let’s go over each step of installing hashcat on your computer, because you’re probably familiar with Linux as well as know that things are rarely that simple.

What is Hashcat?

Hashcat is a popular password-cracking tool that is used by security professionals and hackers to test the strength of passwords. It is open-source software that can run on different platforms, including Linux, Windows, and macOS.

How to Install Hashcat 6.2.5 on Ubuntu 18?

In this article, we will focus on how to install Hashcat 6.2.5 on Ubuntu 18.

Step #1: Update the System

Before installing Hashcat, it is essential to update the Ubuntu system. Open the terminal and enter the following command:

sudo apt-get update && sudo apt-get upgrade

Step #2: Install the Dependencies

Hashcat requires several dependencies to be installed before it can be installed successfully. Enter the following command to install the dependencies:

sudo apt-get install build-essential git zlib1g-dev libssl-dev libpcap-dev libcurl4-openssl-dev libbz2-dev libgmp3-dev

Step #3: Clone the Hashcat Repository

Next, we need to clone the Hashcat repository from GitHub. Enter the following command to clone the repository:

git clone https://github.com/hashcat/hashcat.git

Step #4: Build and Install Hashcat

Navigate to the Hashcat directory that was created when the repository was cloned. Enter the following commands to build and install Hashcat:

cd hashcat
make
sudo make install

Step #5: Verify the Installation

Once the installation is complete, we can verify it by running the following command:

hashcat --version

This should display the Hashcat version, as well as some information about the installation.

Conclusion

In conclusion, installing Hashcat on Ubuntu 18 involves updating the system, installing the dependencies, cloning the Hashcat repository, building and installing Hashcat, and verifying the installation. By following these steps, you should be able to install Hashcat 6.2.5 successfully on Ubuntu 18. It is important to note that Hashcat is a powerful tool that should only be used for legal and ethical purposes, and not for malicious activities.

Also Read: How to Jailbreak iPhone 13 Pro Max

You may also like

Leave a Comment