hashcat Forum
Assistance building mask - 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: Assistance building mask (/thread-7177.html)



Assistance building mask - Skitz0h - 01-07-2018

Hello, I'm trying to build a mask to take a static string such as "Password" and increment numbers at the end for a maximum of 4 digits, but also add a special character after each iteration as seen below 

So, "Password1!" to, "Password9999!"

I always want to end the auto incremented number with "!"

thank you


RE: Assistance building mask - undeath - 01-07-2018

That's not possible with auto-increment. Create an hcmask file with all possible masks.


RE: Assistance building mask - royce - 01-07-2018

+1. Specifically:

Code:
$ cat words.list
red
blue
green
yellow

$ cat mask.list
?d?s
?d?d?s
?d?d?d?s
?d?d?d?d?s

$ hashcat --stdout -a 6 words.list mask.list | head
red1.
red0.
red2-
red3.
red9/
red4-
red5/
red8/
red7/
red6/

$ hashcat --stdout -a 6 words.list mask.list | tail
yellow1649}
yellow0064}
yellow2939}
yellow3939}
yellow9764}
yellow4064}
yellow5939}
yellow8393|
yellow7064}
yellow6883|



RE: Assistance building mask - Skitz0h - 01-07-2018

Thank you Undeath and Royce, that's exactly what I was looking for - appreciate the examples.