01-26-2021, 03:29 PM
(01-26-2021, 02:57 PM)hblender Wrote: use rules: https://hashcat.net/wiki/doku.php?id=rule_based_attack or write your own script
the increment parameter is useless if you specify the custom charset, also there is no need to put all the chacacters (0-9, a-z, A-Z), you can use -1 ?l?u?d ?1?1?1?1?1?1?1?1
we don't understand each other, yours will test all the possibilities again
I want to narrow it down to the following rules where an 8 character password always consists of
3 lowercase letters
3 capital letters
2 digits
I narrowed it down as below
hashcat64.exe -m 2500 -a 3 --increment --increment-min 8 --increment-max 8 xxxx.hccapx
-1 0123456789
-2 ABCDEFGHIJKLMNOPQRSTUVWXYZ
-3 abcdefghijklmnopqrstuvwxyz
?1?2?3?3?2?3?1?2
how to mix all the possibilities of these [?1?2?3?3?2?3?1?2] rules
thank you in advance