Mask Writing
#1
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
Reply
#2
Did you ever successfully write this mask? I have a similar question.
Reply
#3
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
Reply
#4
What is the function of the

c
c
u
I

in your rule?
Reply
#5
https://hashcat.net/wiki/doku.php?id=rul..._functions
Reply