12-20-2017, 03:57 PM
(This post was last modified: 12-20-2017, 04:29 PM by walterlacka.)
(12-20-2017, 01:03 PM)undeath Wrote: I remember only a0 supporting stdin mode. Not sure if this has changed.
I think you're right:
Code:
./hashcat -O -w3 -a6 dict.txt ?a?a?a?a --stdout | ./hashcat -O -w3 -m0 -a7 ?a?a 'hash'
Gives:
Code:
Hash '?a?a': Line-length exception
No hashes loaded.
But this works:
Code:
./hashcat -O -w3 -a6 dict.txt ?a?a?a?a --stdout | ./hashcat -O -w3 -m0 -a0 'hash'
So, I was thinking I could create my own rule file using mp '^?a^?a' > new.rules, then issue this command:
Code:
./hashcat -O -w3 -a6 dict.txt ?a?a?a?a --stdout | ./hashcat -O -w3 -m0 -a0 'hash' -r ./new.rules
But when I use this technique, my speed goes down dramatically. Is there a way to implement this whole thing on GPU instead of using stdin?