Repeating Character in Mask Attack
#2
Well, an easy way to do that would be to use a combinator attack:

https://hashcat.net/wiki/doku.php?id=combinator_attack

hashcat –m 0 –a 1 my.hash mywordlist.txt



Lazy and quick answer, so not speed optimised. If the options are not that many, you can simply create a custom word list and run a combination attack with the word list. All combinations of all words on each line will be tried, starting with the fewest combinations (e.g. first 1 words, combinations of 2 words, combinations of 3 words etc.)
If there are to many options, you can divide the first and second part over two word lists, see second link:

#### Below the content of mywordlist.txt



ja

jaa

jaaa

jaaaa

jaaaaa
.... (meaning if you need more, add more repetitions type them here, this is not code or something)

d

dd

ddd

dddd

ddddd
.... (meaning if you need more, add more repetitions type them here, this is not code or something)

e

ee

eee

eeee

eeeee
.... (meaning if you need more, add more repetitions type them here, this is not code or something)

!

!!

!!!

!!!!

!!!!!
.... (meaning if you need more, add more repetitions type them here, this is not code or something)
Reply


Messages In This Thread
RE: Repeating Character in Mask Attack - by monyanus - 03-18-2021, 02:09 PM