hashcat Forum
hashcat and statsprocessor - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html)
+--- Thread: hashcat and statsprocessor (/thread-1534.html)



hashcat and statsprocessor - romo77 - 09-05-2012

Hi,
Does hashcat 0.40 support stdin from statsprocessor0.08?. Following command doesn't work for me or is it wrong?
Code:
root@bt:~/statsprocessor-0.08# ./sp32.bin --pw-min 3 --pw-max 4 -t 0 ./statiscics.hcstat | ../hashcat-0.40/hashcat-cli32.bin -m 0 /root/hash_full.txt.md5 -o /root/cracked

Thank You


RE: hashcat and statsprocessor - atom - 09-05-2012

no, it does not, by default. on linux you can trick using mkfifo Smile

$ mkfifo dict

then:

1st shell: ./sp32.bin ... > dict
2nd shell: ./hashcat-cli32.bin ... dict


RE: hashcat and statsprocessor - romo77 - 09-05-2012

thank you sir.
would be nice to have that feature in hashcat anyway
I'm not that skilled to understand what you mean. Do I have to create a dictionary with sp and then run hashcat as usual?


RE: hashcat and statsprocessor - romo77 - 09-05-2012

(09-05-2012, 02:58 PM)atom Wrote: no, it does not, by default. on linux you can trick using mkfifo Smile

$ mkfifo dict

then:

1st shell: ./sp32.bin ... > dict
2nd shell: ./hashcat-cli32.bin ... dict
works great thanks again!