hashcat Forum

Full Version: Mask Writing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi it's my first post can anyone help me with this, I need to prepare a mask which use wordlist + mask
the mask should generate all cases for each word (Proper-lower-capital) + try 1 digit and 2 digits for each case

for example if the wordlist contain word like "password" then the mask should generate and try 7 cases for each word in the wordlist as below:

password

password1
password01

Password1
Password01

PASSWORD1
PASSWORD01
Did you ever successfully write this mask? I have a similar question.
Simply make some rules.

Maybe this is an idea?
Code:
cat customrule.rule
:
$1
$0 $1
c $1
c $0 $1
u $1
u $0 $1
What is the function of the

c
c
u
I

in your rule?