CrunchCat (Crunch + HashCat)
#5
If your target password is likely less than the max supported by an optimized kernel, adding "-O" to your command line will be significantly faster. This max value varies from hashtype to hashtype - check the output for the "Maximum password length supported by kernel" value when you run with or without -O.

If the system is non-interactive and you can use all resources for cracking, '-w 4' will also increase speed.

Use hashcat's mask and/or incremental syntax to be as precise with hashcat as you were with crunch. For example, if you need lengths 5 through 7 inclusive of all digits, lower, upper, and special:

hashcat --increment --increment-min 5 --increment-max 7 ?a?a?a?a?a?a?a

This will make hashcat run through the following three masks, in order:

?a?a?a?a?a (five)
?a?a?a?a?a?a (six)
?a?a?a?a?a?a?a (seven)
~
Reply


Messages In This Thread
CrunchCat (Crunch + HashCat) - by Anarown - 05-20-2020, 12:03 AM
RE: CrunchCat (Crunch + HashCat) - by royce - 05-20-2020, 05:19 AM
RE: CrunchCat (Crunch + HashCat) - by Mem5 - 05-20-2020, 11:58 AM
RE: CrunchCat (Crunch + HashCat) - by Anarown - 05-20-2020, 01:07 PM
RE: CrunchCat (Crunch + HashCat) - by royce - 05-20-2020, 04:55 PM