02-01-2020, 08:09 AM
the command should be:
both files myhash and mydict need to exist
the error message that you got, says that the file "hashes" can't be found and therefore hashcat tried to load it as Hash
But you didn't want it to be a hash directly... you wanted to specify a path... the problem is that the file must exist.
for alternative to -a 0, you can just look at the output of:
-a 0 = wordlist (dict.txt)
-a 1 = combinator (dict1.txt + dict2.txt)
-a 3 = mask/brute-force
-a 6 = word+mask
-a 7 = mask+word
you are NOT allowed to post hashes here (see https://hashcat.net/forum/announcement-2.html)
btw: you can't use "echo" like this, because it adds newlines by default (see https://hashcat.net/wiki/?id=frequently_...o_crack_it)
Code:
./hashcat64.bin -a 0 -m 0 myhash mydict
both files myhash and mydict need to exist
the error message that you got, says that the file "hashes" can't be found and therefore hashcat tried to load it as Hash
But you didn't want it to be a hash directly... you wanted to specify a path... the problem is that the file must exist.
for alternative to -a 0, you can just look at the output of:
Code:
./hashcat64.bin --help
-a 0 = wordlist (dict.txt)
-a 1 = combinator (dict1.txt + dict2.txt)
-a 3 = mask/brute-force
-a 6 = word+mask
-a 7 = mask+word
you are NOT allowed to post hashes here (see https://hashcat.net/forum/announcement-2.html)
btw: you can't use "echo" like this, because it adds newlines by default (see https://hashcat.net/wiki/?id=frequently_...o_crack_it)