## 1-Create a custom dictionary using CeWL from www.netmux.com website: ``` [[cewl]] -d 2 -m 5 -w custom_dict.txt http://www.netmux.com ``` ## 2-Combine the new custom_dict.txt with the Google 10,000 most common English words: https://github.com/first20hours/google-10000-english ``` cat google-1000.txt >> custom_dict.txt ``` ## 3-Combine with Top 196 passwords from “Probable Wordlists”: github.com/berzerk0/Probable-Wordlists/blob/master/Real-Passwords ``` cat Topl96-probable.txt >> custom_dict.txt ``` ## 4-Combo the Topl96-probable.txt together using Hashcat-util “combinator.bin” and add it to our custom_dict.txt ``` combinator.bin Topl96-probable.txt Topl96-probable.txt >> custom_dict.txt ``` ## 5-Run the best64.rule from Hashcat on Top196-probable.txt and send that output into our custom dictionary: ``` hashcat -a 0 Topl96-probable.txt -r best64.rule --stdout >> custom_dict.txt ``` Can you now come up with an attack that can crack this hash? ``` e4821dl6a298092638ddb7cadc26d32f ``` [[Home]]