Need help combinding 2 different dictionaries - 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: Need help combinding 2 different dictionaries (/thread-8050.html) |
Need help combinding 2 different dictionaries - IloveStuff - 01-04-2019 I have to seperate dictionaries that im trying to combine but in between i want to have the numbers 0-9999 so text1.txt 0001 text2.txt text1.txt 0002 text2.txt text1.txt 0003 text2.txt .... text1.txt 9999 text2.txt etc. I tried this guideĀ https://pthree.org/2013/04/22/password-attacks-part-iii-the-combination-attack/ but ended with the wrong results as I recieved ex: Dog0001Cat Dog0002Fish instead of (which is what i wanted) Dog0001Cat Dog0002Cat Dog0003Cat ...... Dog9999Cat Im new to this so please be easy on me. RE: Need help combinding 2 different dictionaries - philsmd - 01-04-2019 you can use something like this: Code: hashcat --stdout -o temp_dict.txt -a 6 text1.txt ?d?d?d?d ...and afterwards crack the hashes with a normal -a 1 combinator attack: Code: hashcat -m 0 -w 3 -a 1 hashes.txt temp_dict.txt text2.txt (you can/should add -O if you are sure that the final password lengths are all < 31. of course you also need to adjust -m x depending on your hash type that you want to attack) |