Password Cracking
John The Ripper
Basic usage
john --wordlist=wordlist.txt hash.txt --format=NTWith rules
It is also possible to apply (all) rules to the provided passwords to cover a wider range of possibilities.
John rules are stored in /etc/john/john.conf.
john --wordlist=wordlist.txt hash.txt --format=NT --rules=AllKoreLogic rules
In order to add KoreLogic rules to john default rules, proceed as follows:
curl https://raw.githubusercontent.com/SpiderLabs/KoreLogic-Rules/master/kore-logic-rules-full.txt >> /etc/john/john.confHashcat
Basic usage
hashcat -a 0 -m 1000 hash.txt wordlist.txtWith rules
One rule to rule them all
Last updated