Hi all,
I recently needed to perform an attack while rejecting some candidates lengths.
As the rejection rule is not supported in hashcat, I used hashcat-legacy but unfortunately it seems not to work with combinator. Am I doing something wrong ?
The program is expecting a dictionnary, as if the piping didn't work correctly.
If such combo is not supported, any idea how to reject some plains by other means ?
Thanks !
Edit : I found a way with "len" from hashcat-utils but it makes the speed to drop down to a ridiculously slow H/s.
./combinator dict1 dict2 | ./len.app MIN MAX | hashcat -m 0 hashes -a 0 --outfile results.txt
I recently needed to perform an attack while rejecting some candidates lengths.
As the rejection rule is not supported in hashcat, I used hashcat-legacy but unfortunately it seems not to work with combinator. Am I doing something wrong ?
Code:
./combinator dict1.txt dict2.txt | ./hashcat-cli64.app -m 0 hashes -a 0 --outfile results.txt -r reject.rule
The program is expecting a dictionnary, as if the piping didn't work correctly.
If such combo is not supported, any idea how to reject some plains by other means ?
Thanks !
Edit : I found a way with "len" from hashcat-utils but it makes the speed to drop down to a ridiculously slow H/s.
./combinator dict1 dict2 | ./len.app MIN MAX | hashcat -m 0 hashes -a 0 --outfile results.txt