hashcat Forum
Usage of --increment-min ? - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html)
+--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html)
+--- Thread: Usage of --increment-min ? (/thread-1586.html)



Usage of --increment-min ? - Mem5 - 09-22-2012

Hi,

I would like to start from lenght 9, so I launch (oclHashcat-plus-0.09) :
Quote:oclHashcat-plus64.exe -m 0 -a 3 -i --increment-min=9 -1=?a hashes.txt
...
[s]tatus [p]ause [r]esume [b]ypass [q]uit => s
Status.......: Running
Input.Mode...: Mask (?1?2?2?2)
..
Why does the mask contain 4 characters while I set --increment-min=9 ?

The same thing happens if I specify the mask :
Quote:oclHashcat-plus64.exe -m 0 -a 3 -i --increment-min=9 -1=?a hashes.txt ?1?1?1?1?1?1?1?1?1
...
Input.Mode...: Mask (?1?1?1)
...

How can I force it to start at len 9 ?

Thanks


RE: Usage of --increment-min ? - M@LIK - 09-22-2012

Unfortunately, there's a bug with --increment-min|max
M@LIK Wrote: Confirming the ignoring of --increment-min when using -i.
We have to create masks like before:
Code:
?1
?1?1
?1?1?1
?1?1?1?1
Don't use -i unless you want to run the whole keyspace.


RE: Usage of --increment-min ? - atom - 09-22-2012

I can reproduce this bug. Thanks for reporting!


RE: Usage of --increment-min ? - Mem5 - 09-22-2012

Great Smile