Multiple times (Known Passwordpart + same number)
#2
simplest approach would be a pregenerated wordlist for the first part word and number and combining this list with rules for pN Append duplicated word N times

you can utilize --stdout for the first part, take a look at this output
Code:
.\hashcat.exe --stdout -a3 Test?d?d?d
redirect this to a file and use dictionary attack with a proper rulefile like

rulefile.txt

Code:
:
p1
p2
p3
p4


this rules will do nothing or copy your fist part 1,2,3,4 times so max would be something like

test111test111test111test111test111test111
Reply


Messages In This Thread
RE: Multiple times (Known Passwordpart + same number) - by Snoopy - 07-30-2022, 11:37 AM