01-05-2018, 10:12 AM
As far as I remember there was a problem with self-test for -m 15700. I would suggest to use the beta in this particular case for which the self-test error should not happen anymore (https://hashcat.net/beta).
Your command is not correct and it will wait for input from standard input (stdin, pipe).
You need to specify an attack mode and some more input dict/mask etc.
Please try something as simple as this:
the file hash.txt should contain your hash and the file dict.txt should contain all your password candidates (one per line, therefore separated by a new line).
Your command is not correct and it will wait for input from standard input (stdin, pipe).
You need to specify an attack mode and some more input dict/mask etc.
Please try something as simple as this:
Code:
hashcat -m 15700 -a 0 -w 3 hash.txt dict.txt
the file hash.txt should contain your hash and the file dict.txt should contain all your password candidates (one per line, therefore separated by a new line).