Multiple times (Known Passwordpart + same number) - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: Multiple times (Known Passwordpart + same number) (/thread-10912.html) |
Multiple times (Known Passwordpart + same number) - Sondero - 07-29-2022 Hello, i‘m searching to create a rule for a password structure like the following The character part is known, only the numbers are unknown, but ich know that the number comes a few times during the passwords and is still the same. Test111Test111Test111Test111 Test112Test112Test112Test112 Test113Test113Test113Test113 RE: Multiple times (Known Passwordpart + same number) - Snoopy - 07-30-2022 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 rulefile.txt Code: : this rules will do nothing or copy your fist part 1,2,3,4 times so max would be something like test111test111test111test111test111test111 |