![]() |
Pipe is slow - 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: Pipe is slow (/thread-4182.html) Pages:
1
2
|
RE: Pipe is slow - shodan - 03-14-2015 In my setup -w 3 Quote:Speed.GPU.#1...: 153.8 kH/s UPD: i think i found! "CPU hashcat" is slow. if i send all password to file; file pipe to oclhashcat via stdin, speed oclHashcat is normal. ..\hashcat-0.49\hashcat-cliAVX2.exe -r bf.rule "D:\wordlist\concentrate" --stdout > manual type manual | cudaHashcat64.exe -a 0 -m 2500 -w 2 --session=s6 --gpu-temp-abort=90 --gpu-temp-retain=90 -o "D:\keys\hash_found.txt" --outfile-format=3 D:\keys\step6\out80.hccap Quote:Session.Name...: s6 Rule file Quote:$0$0$0$0 Measured "CPU hashcat" with chronometer: ~260 000 words / sec goes out via stdout. (cli64, cliXOP,cliAVX speed is similar) How i can accelerate "CPU hashcat" for fastest --stdout generated? RE: Pipe is slow - undeath - 03-14-2015 why not let oclhashcat apply the rules and just cat the wordlist? oclhashcat -r rules.file < wordlist RE: Pipe is slow - shodan - 03-15-2015 cudaHashcat64.exe -r bf.rule -a 0 -m 2500 D:\in.hccap <"D:\wordlist\concentrate.txt" Quote:Speed.GPU.#1...: 151.3 kH/s RE: Pipe is slow - atom - 03-15-2015 Sometimes, with a lot of GPU power, it takes a bit of manual support. Please optimize your attack. Here's an example: Quote:root@et:~/hashcat-0.50# head -10000 /root/dict/untouched/rockyou.txt > rockyou10k.txt That's compareable to what you did. It's just 1 M/s on my 4770k. A better approach would be this: Quote:root@et:~/hashcat-utils-1.2# head -10000 /root/dict/untouched/rockyou.txt > rockyou10k.txt That's 52 M/s which should be sufficient to feed your GPUs. RE: Pipe is slow - shodan - 03-15-2015 Atom, you are best! Thanks! ..\hashcat-utils-1.1\combinator.exe "D:\pass.txt" right.txt | cudaHashcat64.exe -a 0 -m 2500 -w 2 D:\in.hccap Quote:Speed.GPU.#1...: 154.3 kH/s |