Mask + Brute Force with repeated password
#8
hashcat -a 6 wordlist.txt -1 ?l?u?d?s ?1?1?1?1 --increment --increment-min 1 --increment-max 4 --stdout --session mask | hashcat -r duplicate.rule --stdout --session duplicate | hashcat -m 14600 file.img -r footer.rule --session hdrfooter

Where duplicate.rule is a file containing simply "d" (no quotes), for duplicate. Also tried with p1. 

It takes a wordlist, adds a brute forced string of 1 to 4 characters at the end, pipes that to another instance of hashcat, duplicates the string, then pipes that to a final instance of hashcat that adds a header and footer and runs on my file. It works, unless the string generated in the first step is longer than 15 characters, in which case it doesn't duplicate it.

Thanks again.


Messages In This Thread
RE: Mask + Brute Force with repeated password - by oompaloompa - 03-02-2018, 03:15 AM