BF fails - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: BF fails (/thread-4790.html) |
BF fails - dTest - 11-06-2015 Having a possible strange issue with BF'ing a WPA. (v1.36) Dictionary attack and rules based got it. Password is 9 characters all lowercase But not BF. What am I doing wrong? Code: ./oclHashcat64.bin -m 2500 -a 3 -t 10 --outfile=./x.txt ./mywifi.hccap ?a?a?a?a?a?a?a?a?a This had a runtime of about 1 hour 15 minutes. Quote:./oclHashcat64.bin -m 2500 -a 3 -t 10 --outfile=./x.txt ./mywifi.hccap ?l?l?l?l?l?l?l?l?l This had a run time of 1 hour 7 minutes. Isn't the '?a' all characters, numbers and symbols, and '?l' just lowercase? Why does a vastly larger keyspace have essentially the same run time? RE: BF fails - epixoip - 11-06-2015 It's the same keyspace for both attacks. Do you understand what "-t 10" does? Hint: Both of your attacks have a keyspace of 10^9. RE: BF fails - dTest - 11-06-2015 Ah! Light bulb goes off. thanks |