Posts: 2
Threads: 1
Joined: Jan 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
Posts: 2,301
Threads: 11
Joined: Jul 2010
That's not possible with auto-increment. Create an hcmask file with all possible masks.
Posts: 930
Threads: 4
Joined: Jan 2015
01-07-2018, 07:25 PM
(This post was last modified: 01-07-2018, 07:26 PM by royce.)
+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|
~
Posts: 2
Threads: 1
Joined: Jan 2018
Thank you Undeath and Royce, that's exactly what I was looking for - appreciate the examples.