Hashcat v 0.50 "increment error"
#1
Trying to do a bruteforce attack (maskattack) for vbulletin<3 with following code:

Code:
hashcat-cli64.exe -a 3 -m 2611 --pw-min=3 --pw-max=6 -e "D:\salt3_32" -p : -o "D:\Hashcat_050\1121_found.txt" --outfile-format=3 --remove -n 12 -c 64 "D:\list\1121hashes" -1 ?l?d ?1?1?1?1?1?1

With Hashcat 0.49 no problem
With hashcat 0.50 increment error

Is there anything wrong in the command line??

thank you

tibit
#2
Just have a look at the --help output
Code:
--increment           Enable increment mode
--increment-min=NUM   Start incrementing at NUM
--increment-max=NUM   Stop incrementing at NUM

This question was also asked a couple of times in forum, some users even bothered about opening a (not needed) trac ticket e.g. https://hashcat.net/trac/ticket/631 even if the release notes and the trac ticket
https://hashcat.net/trac/ticket/572 clearly states what has changed and what --increment, --increment-min and --increment-max mean
#3
In fact, I tried to use that first but,
Using "--increment" in my code with version 0.50, I get errors :
"invalid increment maximum specified"

using this code:
Code:
hashcat-cli64.exe -a 3 -m 2611 --increment-min=4 --increment-max=6 -e "D:\salt3_32" -p : -o "D:\Hashcat_050\1121_found.txt" --outfile-format=3 --remove -n 12 -c 64 "D:\list\1121hashes" -1 ?l?d ?1?1?1?1?1?1

Thanks
#4
Code:
hashcat-cli64.exe -a 3 -m 2611 --increment --increment-min=4 --increment-max=6 -e "D:\salt3_32" -p : -o "D:\Hashcat_050\1121_found.txt" --outfile-format=3 --remove -n 12 -c 64 "D:\list\1121hashes" -1 ?l?d ?1?1?1?1?1?1


#5
(11-23-2015, 01:55 AM)azren Wrote:
Code:
hashcat-cli64.exe -a 3 -m 2611 --increment --increment-min=4 --increment-max=6 -e "D:\salt3_32" -p : -o "D:\Hashcat_050\1121_found.txt" --outfile-format=3 --remove -n 12 -c 64 "D:\list\1121hashes" -1 ?l?d ?1?1?1?1?1?1



Adding "--increment" doesn'tmake any difference ... same error.
"invalid increment maximum specified"
#6
You don't need to specify --increment-max.