Hashcat
Usage
hashcat -a 0 -m 18200 user_hash /usr/share/wordlists/rockyou# Mode code enumeration
hashcat -hh | grep <FORMAT>
# Example formats
hashcat -m 2100 --example-hasheshashcat hashes.txt /usr/share/wordlists/rockyou.txt --usernamehashcat --show hashes.txt$ cat /home/plaintext/.cme/logs/MS01_10.129.204.133_2022-11-08_093944.cached| cut -d ":" -f 2
$DCC2$10240#julio#c2139497f24725b345aa1e23352481f3
$DCC2$10240#david#a8338587a1c6ee53624372572e39b93f
$DCC2$10240#john#fbdeac2c1d121818f75796cedd0caf0aRules
# initial password file
$ cat mutating_example.txt
password
# capitalize the first letter & add '1' at the end simultaneously
$ echo 'c $1' > rule1.txt && cat rule1.txt
c $1
$ hashcat -r rule1.txt --stdout mutating_example.txt
Password1
# capitalize the first letter, add '1' at the end
$ echo -e 'c\n$1' > rule2.txt && cat rule2.txt
c
$1
$ hashcat -r rule2.txt --stdout mutating_example.txt
Password
password1Optimization
Hash Types
Type
Mode
Cracking Time
Resources
Last updated