![]() |
Hashcat v 0.50 "increment error" - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Hashcat v 0.50 "increment error" (/thread-4837.html) |
Hashcat v 0.50 "increment error" - tibit - 11-22-2015 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 RE: Hashcat v 0.50 "increment error" - philsmd - 11-22-2015 Just have a look at the --help output Code: --increment Enable increment mode 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 RE: Hashcat v 0.50 "increment error" - tibit - 11-23-2015 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 RE: Hashcat v 0.50 "increment error" - azren - 11-23-2015 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 RE: Hashcat v 0.50 "increment error" - tibit - 11-23-2015 (11-23-2015, 01:55 AM)azren Wrote: Adding "--increment" doesn'tmake any difference ... same error. "invalid increment maximum specified" RE: Hashcat v 0.50 "increment error" - epixoip - 11-23-2015 You don't need to specify --increment-max. |