Two Word lists + Mask
#1
Hey guys!

I already tried almost everything what I know and what I can find, but nothing is working.

Is there a way that I combine two word lists (-a 1) + add a mask at the end (?d?d?d) ?

Thanks
Reply
#2
using combinator attack (-a 1) with --stdout then hybrid attack (-a 6) would accomplish this exact task.

example:

hashcat.exe -a 1 --stdout wordlist1.txt wordlist2.txt > output.txt
hashcat.exe -a 6 -m xx hashfile.txt output.txt ?d?d?d
Reply