fast at 7 charaters -> slow at 8 - 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: fast at 7 charaters -> slow at 8 (/thread-3861.html) |
fast at 7 charaters -> slow at 8 - Joe6pack - 11-27-2014 Hello, sorry 4 my bad english. I try an BF on WPA2. With this command: Code: mp32 -1 dABCDEF ?1?1?1?1?1?1?1 | oclHashcat32 -m 2500 D:\Handshakes\84-9C-A6-2D-71-90_handshake.hccap Output: Code: oclHashcat v1.31 starting... 823543 in 4 seconds.. With one more: Code: mp32 -1 dABCDEF ?1?1?1?1?1?1?1?1 | oclHashcat32 -m 2500 D:\Handshakes\84-9C-A6-2D-71-90_handshake.hccap Output looks like this: Code: C:\Hacking\oclHashcat-1.31>mp32 -1 dABCDEF ?1?1?1?1?1?1?1?1 | oclHashcat32 -m only 2128 H/s. (Ok, very slow GPU, but.....) Why ??? RE: fast at 7 charaters -> slow at 8 - Rolf - 11-27-2014 Why are you piping output to oclhc when it has a built-in password generator? Try this: Code: C:\Hacking\oclHashcat-1.31>oclHashcat32 -m 2500 -1 dABCDEF D:\Handshakes\84-9C-A6-2D-71-90_handshake.hccap ?1?1?1?1?1?1?1?1 Also, I think oclhc automatically rejects anything that's less than 8 or more than 63(15) for WPA/WPA2, as per 802.11i standard. RE: fast at 7 charaters -> slow at 8 - Joe6pack - 11-27-2014 Ah, ok, i dont have see, that Hascat has rejected the Keys. I used MP because the builtin Mask has only generated ~2000 k/s with 7 charaters. Then i tried the MP and i thought it would go faster. (Shame, i dont see the rejected keys) thanks for ur help! Damn, i need a faster GPU in my Server. :o) RE: fast at 7 charaters -> slow at 8 - Joe6pack - 11-27-2014 One more little question: is it possible to test several hashes (WPA2) at the same time with an list or something? RE: fast at 7 charaters -> slow at 8 - Rolf - 11-27-2014 Yes. On windows, do "copy /b file1.hccap+file2.hccap+file3.hccap+... combined.hccap" and then feed this file to oclhc. RE: fast at 7 charaters -> slow at 8 - Joe6pack - 11-27-2014 Thanks alot !!! |