Assistance building mask
#1
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
#2
That's not possible with auto-increment. Create an hcmask file with all possible masks.
#3
+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|
~
#4
Thank you Undeath and Royce, that's exactly what I was looking for - appreciate the examples.