WPA2 Speed drops by 5x - 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: WPA2 Speed drops by 5x (/thread-4018.html) |
WPA2 Speed drops by 5x - 10fi - 01-27-2015 Hi, I have an issue with unjustified speed drops. Usually for WPA2 I have nice speeds, around 176 kH/s. I wanted to try hybrid dictonary + 3 digits: Code: cudaHashcat64.exe -a 6 -m 2500 --session=all --status --status-timer=60 -o "z:\1.txt" --outfile-format=3 -w 3 --gpu-temp-abort=80 ".hccap" "words.txt" ?d?d?d Which results in nice speeds: Code: Hash.Type......: WPA/WPA2 Now by just changing the order (?d?d?d + dictionary) I get 5 times slower speed: Code: cudaHashcat64.exe -a 7 -m 2500 --session=all --status --status-timer=60 -o "z:\1.txt" --outfile-format=3 -w 3 --gpu-temp-abort=80 ".hccap" ?d?d?d "words.txt" Code: Hash.Type......: WPA/WPA2 Few facts: - the speed is almost constant for both cases, testes that a couple of times - same input is used for both cases, however changing dict and hccap file changes nothing at all - the gpu utilization is ~93% not ~99% as usual (per MSI afterburner) for the second, slower variant - indicating some issues with feeding the gpu with data - running windows + cudahashcat 1.31 + hashcatGUI 0.44 - newest drivers - the wordlist is on SSHD - GPU temp is at relaxed 60 C - neither the SSHD nor CPU/memory seem to be bothered in anyway My humble question: Why shift from dict+mask to mask+dict caused such a decrease in speed? RE: WPA2 Speed drops by 5x - epixoip - 01-27-2015 Left keyspace is too small. RE: WPA2 Speed drops by 5x - 10fi - 01-27-2015 (01-27-2015, 02:07 AM)epixoip Wrote: Left keyspace is too small. What the "left key space" is ? I didn't catch it. Could you please elaborate and let me know how to tackle that? RE: WPA2 Speed drops by 5x - epixoip - 01-27-2015 The attack is not well-structured for GPU acceleration. The keyspace for the left side of your attack is too small, and therefore you will not achieve any GPU acceleration. You can optimize this attack for GPU by using prepend rules instead of hybrid attack. RE: WPA2 Speed drops by 5x - atom - 01-27-2015 If you switch to oclHashcat v1.32 this will not happen anymore. It will use the wordlist as base whetever -a you choose in hybrid mode. RE: WPA2 Speed drops by 5x - 10fi - 01-27-2015 @epixoip: Kind thanks! It looks like I will have to read a couple of arts about optimization. Still, given what you said - "the left side of your attack is too small" - I'm a bit surprised that ?d?d (two digits) give the speed of >170 kH/s, same for ?d?d?d?d, but ?d?d?d gives me ~20%. @atom: Kind thanks, will try that out. |