Posts: 52
Threads: 21
Joined: Jun 2012
11-22-2015, 05:07 PM
(This post was last modified: 11-22-2015, 05:07 PM by tibit.)
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
Posts: 2,267
Threads: 16
Joined: Feb 2013
11-22-2015, 05:18 PM
(This post was last modified: 11-22-2015, 05:20 PM by philsmd.)
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
Posts: 52
Threads: 21
Joined: Jun 2012
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
Posts: 55
Threads: 5
Joined: Apr 2014
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
Posts: 52
Threads: 21
Joined: Jun 2012
(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"
Posts: 2,936
Threads: 12
Joined: May 2012
You don't need to specify --increment-max.