How to install hashcat 6.2.5 on ubuntu 18 – Complete guide 2023.

Before going directly into how to install hashcat 6.2.5 on ubuntu 18 let’s make a short understanding of hashcat 6.2.5.
What is hashcat?
Hashcat 6.2.5 is a password cracking tool that uses the power of your GPU to perform complex calculations. It is an advanced version of the original hashcat tool and is considered one of the fastest and most powerful password cracking tools available.
Hashcat 6.2.5 supports a wide variety of hashing algorithms, including popular ones such as MD5, SHA1, and SHA256. It also supports many types of attacks, including dictionary, brute-force, and rule-based attacks. This allows you to use different techniques to crack different types of passwords, depending on the complexity and length of the password.
One of the unique features of Hashcat 6.2.5 is its ability to use multiple GPUs in parallel, which greatly increases its cracking speed. It also supports distributed cracking, which allows you to use a network of computers to perform the calculations, further increasing the cracking speed.
Hashcat 6.2.5 also offers a number of advanced features such as mask attacks, which allow you to perform targeted cracking by specifying a specific pattern for the password. It also has a built-in benchmarking feature that allows you to test the performance of your GPU.
Hashcat 6.2.5 is a command line tool and its interface may not be as user-friendly as other cracking tools, but it is widely used by penetration testers, security researchers, and forensic investigators.

How to install hashcat 6.2.5 on ubuntu 18
To install hashcat 6.2.5 on Ubuntu 18, you can follow these steps:
- Download the hashcat package by running the command:
wget https://hashcat.net/files/hashcat-6.2.5.7z
- Install the 7zip package by running the command:
sudo apt-get install p7zip-full
- Extract the downloaded package by running the command:
7z x hashcat-6.2.5.7z
- Change the directory to the extracted folder by running the command:
cd hashcat-6.2.5
- Use the command ‘sudo make’ to install hashcat.
- Once the installation is complete, you can run hashcat by running the command:
./hashcat
You may need to install some dependencies before running the above commands.
Note: It’s also recommended to use hashcat version that is supported by your GPU.
Dependencies needed to install hashcat on Ubuntu 18
The dependencies needed to install hashcat on Ubuntu 18 are as follows:
- OpenCL: hashcat uses OpenCL to perform the password cracking calculations on the GPU. You can install the OpenCL runtime and headers by running the command:
sudo apt-get install ocl-icd-opencl-dev
- p7zip: As the hashcat package is distributed in the 7z format, you will need to install the p7zip package in order to extract it. You can install p7zip by running the command:
sudo apt-get install p7zip-full
- GCC and Make: hashcat is written in C, so you will need the GCC compiler and Make to build the software. You can install them by running the command:
sudo apt-get install build-essential
- NVIDIA CUDA: If you want to use NVIDIA GPU, you need to install NVIDIA CUDA. You can download it from the official website and install it, following the instruction.
- AMD OpenCL: If you want to use AMD GPU, you need to install AMD OpenCL. You can download it from the official website and install it, following the instruction.
These are the main dependencies needed to install hashcat on Ubuntu 18. You may also need to install other dependencies depending on your system configuration.
Conclusion
Please note that cracking password without permission is illegal and unethical, so use it only for legal and authorized purposes.
Thanks for reading 🙂