proper use of increment option
#2
We need to distinguish between the minimum and maximum password length supported by the algorithm and OpenCL kernels ... and the settings the user sets (with --increment-max for instance).

What you quoting is the supported length by the algorithm and OpenCL kernel (this normally changes when the user uses -O, but for -m 2500 and other algorithms it is behaving different again, mainly because they are slow hashes and there is almost no difference between full-length kernels and limited-length kernels etc).

You could troubleshoot your "problem" (which basically is just a misunderstanding) by playing around with --stdout:

Code:
hashcat --stdout -a 3 --increment --increment-min 2 --increment-max 3 ?d?d?d?d

You will notice that the length of the words in the output are only 2 and 3 digits long (even if the max is longer)... the same happens with longer masks (but of course they would take longer to generate).


Messages In This Thread
proper use of increment option - by catwoman - 11-26-2017, 05:48 AM
RE: proper use of increment option - by philsmd - 11-26-2017, 10:03 AM
RE: proper use of increment option - by atom - 11-26-2017, 10:10 AM
RE: proper use of increment option - by catwoman - 11-27-2017, 01:12 AM
RE: proper use of increment option - by epixoip - 11-27-2017, 01:49 AM
RE: proper use of increment option - by catwoman - 11-27-2017, 02:28 AM