Cryptography 5 commands
Hashcat
Advanced GPU-based password recovery utility supporting over 300 hash types. The world's fastest password cracker.
passwordcrackinggpuhash
Installation
sudo apt install hashcat
# or
brew install hashcat
# Requires GPU drivers (NVIDIA CUDA / AMD OpenCL)Commands & usage
5 entrieshashcat -m 0 hash.txt wordlist.txtMD5 dictionary attack
hashcat -m 1000 hash.txt wordlist.txtNTLM dictionary attack
hashcat -m 0 -a 3 hash.txt ?a?a?a?a?a?aBrute force attack
hashcat -m 0 hash.txt wordlist.txt -r rules/best64.ruleRule-based attack
hashcat --show hash.txtShow cracked hashes
Use cases
Password recoveryHash crackingSecurity auditingCompliance testingCTF challenges