Difference between revisions of "Linux Hashcat"

From Ever changing code
Jump to navigation Jump to search
(Created page with "Hashcat utility allows you to guess a hash type behind a blob. = Install = sudo apt update sudo apt install cmake build-essential checkinstall sudo apt remove hashcat #...")
 
 
Line 16: Line 16:
*[https://github.com/hashcat/hashcat Hashcat] Git repo
*[https://github.com/hashcat/hashcat Hashcat] Git repo
*[https://hashcat.net/hashcat/ hashcat] Official web
*[https://hashcat.net/hashcat/ hashcat] Official web
*[https://hashcat.net/wiki/doku.php?id=hashcat hashcat man page] Official web

Latest revision as of 19:46, 31 March 2018

Hashcat utility allows you to guess a hash type behind a blob.

Install

sudo apt update
sudo apt install cmake build-essential checkinstall
sudo apt remove hashcat    #optional
sudo apt build-dep hashcat #optional
git clone https://github.com/hashcat/hashcat.git
cd hashcat
git submodule update --init
sudo make
sudo make install
hashcat --version

References