Another question about mask to deal with space
#7
(11-21-2013, 02:38 AM)gale6k Wrote: My total cmd is :
oclHashcat-plus64.exe -a 3 -m 1000 --force -o "ntlm_out.txt" --outfile-format=2 --markov-disable --gpu-temp-disable -i --increment-min=8 --increment-max=8 "ntlm.txt" '?a?a?a?a?a?a 2'

this cmd exit with mask is too small

the password may be start with six ?a and end with space and 2.
I don't know why you got that error but by default, oclhashcat does the mask as is (without increment). You then ask for increment with -i and then abolish it by setting the same min and max. It does not make sense. Just try this:

Code:
oclHashcat-plus64.exe -a 3 -m 1000 --force  -o "ntlm_out.txt" --outfile-format=2 --markov-disable --gpu-temp-disable "ntlm.txt" '?a?a?a?a?a?a 2'
If it does not work, try replacing the ' by " (replace single quote by double quote). I don't think it will change anything but you never know. Finally, it's in your best interest to use markov chains so I would remove the --markov-disable switch.


Messages In This Thread
RE: Another question about mask to deal with space - by mastercracker - 11-27-2013, 06:40 AM