1080ti slow speed performance WPA/WPA2 - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: 1080ti slow speed performance WPA/WPA2 (/thread-7251.html) Pages:
1
2
|
RE: 1080ti slow speed performance WPA/WPA2 - 3dFX - 02-03-2018 (02-03-2018, 02:54 PM)atom Wrote: We did some more changes to the code. Please download latest RC (RC6) from https://hashcat.net/beta/ or compiler from github master and retry.hashcat-4.1.0-rc6 8 digirs wordlist test: hashcat64.exe -a 0 -m 2500 -w 4 -p : --status --status-timer=10 --nonce-error-corrections=0 --gpu-temp-disable -o "C:\8020_1517045065_found2500.txt" --outfile-format=3 "C:\8020_1517045065.hccapx" "C:\8x.dic" Code: Session..........: 2018-02-03 8 digits mask brut-force test: hashcat64.exe -a 3 --session=2018-02-03 -m 2500 -w 4 -p : --status --status-timer=10 --nonce-error-corrections=0 --gpu-temp-disable -o "C:\8020_1517045065_found2500.txt" --outfile-format=3 "C:\8020_1517045065.hccapx" ?d?d?d?d?d?d?d?d Code: Session..........: 2018-02-03 hashcat64.exe -b -m 2500 Code: hashcat (v4.1.0) starting in benchmark mode... wordlist wpa attack - slow speed mask brut-force attack - normal speed RE: 1080ti slow speed performance WPA/WPA2 - atom - 02-03-2018 The problem is that with v3.4 to 4.x the maximum supported password length went up from 64 (in theory) to 256. When using -a 0, all the data has been copied over pci-express. With 4.x, that size is 4 times as big as with 3.4. OTOH when using -a 3, it's all generated directly on GPU, there's no use of PCI-Express. Therefore your -a 3 speed is good, and your -a 0 is not. It also means there's no way of "fixing" this using code. However, you can workaround the problem by using rules. If you use a small ruleset with 3-4 rules you should be able to compensate the problem. Code: hashcat64.exe -a 0 -m 2500 -w 4 -p : --status --status-timer=10 --nonce-error-corrections=0 --gpu-temp-disable -o "C:\8020_1517045065_found2500.txt" --outfile-format=3 "C:\8020_1517045065.hccapx" "C:\8x.dic" -r mini.rule If you have PCI-Express extender cable for your GPU this effect is even more visible. By removing them, the effect should reduce. RE: 1080ti slow speed performance WPA/WPA2 - royce - 02-05-2018 atom also came up with a pretty clever way to push more data across the PCI-e! https://hashcat.net/forum/thread-7267-post-39112.html RE: 1080ti slow speed performance WPA/WPA2 - 3dFX - 03-01-2018 Thanks atom! My problem whis slow speed performance WPA/WPA2 with a wordlist attack is fixed in hashcat 4.1.0 release. |