mask attack with a max occurrence
#2
maskprocessor (https://github.com/hashcat/maskprocessor) has 2 options:
-q, --seq-max=NUM Maximum number of multiple sequential characters
-r, --occurrence-max=NUM Maximum number of occurrence of a character

(-q filters out all password candidates that have *more or equal* characters than the value specified directly next to each other, -r instead checks if the password candidate does not have more or equal identical characters within the *whole* password candidate/line)

You could simply pipe the output of maskprocessor to hashcat, e.g.

Code:
mp64 -q 3 ?a?a?a?a?a | hashcat -m 0 -a 0 -w 4 hash.txt


Messages In This Thread
mask attack with a max occurrence - by lloydXmas - 08-03-2017, 04:01 PM
RE: mask attack with a max occurrence - by philsmd - 08-03-2017, 04:59 PM