Help on Rule or Mask or something - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Help on Rule or Mask or something (/thread-11320.html) Pages:
1
2
|
RE: Help on Rule or Mask or something - pdparisi - 03-02-2023 bump? RE: Help on Rule or Mask or something - TheAviator - 03-05-2023 (02-25-2023, 06:12 AM)pdparisi Wrote: Your assumption is correct but there needs to be and optional special character between each word. I dont know if this is the best way to do this, but here's what i would do Download a world list of English words from somewhere. Next make all the first letters capital Code: hashcat englishwordlist.txt -j c --stdout > CapitalizedEnglishwordlist.txt next add special characters to front of word list Code: hashcat -a7 ?s CapitalizedEnglishwordlist.txt --stdout > CapitalizedEnglishwordlistv2.txt Then you want to add special characters to end of word list Code: hashcat -a6 CapitalizedEnglishwordlistv2.txt ?s --stdout > CapitalizedEnglishwordlistv3.txt So now you have *special character* word *special character* Next you could use englishwordlist.txt again to add to the end of CapitalizedEnglishwordlistv3.txt Code: hashcat -a1 CapitalizedEnglishwordlistv3.txt englishwordlist.txt --stdout > CapitalizedEnglishwordlistv4.txt Then you want to add another special character Code: hashcat -a6 CapitalizedEnglishwordlistv4.txt ?s --stdout > CapitalizedEnglishwordlistv5.txt This should now be the list you want. This list size may get very large though could be hundreds of gigabytes (maybe even terabytes). be sure you have LOTs of disk space. Then cracking that list will still take a considerable amount of time depending on your GPU. RE: Help on Rule or Mask or something - TheAviator - 03-05-2023 even found a 10,000 word list for you https://github.com/first20hours/google-10000-english/blob/master/google-10000-english.txt |