hashcat Forum

Full Version: hashcat and statsprocessor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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
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?
(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!