# Crack an MD5 Hash hashcat -m 0 -a 0 hash.txt wordlist.txt # Crack a SHA256 Hash hashcat -m 1400 -a 0 hash.txt wordlist.txt # Crack a bcrypt Hash ($2a$) hashcat -m 3200 -a 0 hash.txt wordlist.txt # Common Attack Modes -a 0 : Straight (wordlist) -a 1 : Combination -a 3 : Brute-force (mask attack) -a 6 : Hybrid wordlist + mask -a 7 : Hybrid mask + wordlist # Mask Attack Example (Brute-Force) hashcat -m 0 -a 3 hash.txt ?l?l?l?l?l?l # Restore Interrupted Session hashcat --restore # Show Cracked Hashes hashcat -m 0 hash.txt --show # Benchmark hashcat -b