Posts: 3
Threads: 1
Joined: Apr 2020
I am using the hashkiller.dict.txt file as my dictionary and i get get the following on each possible password in the dictionary, what separator is it looking for?
Hashfile 'hashkiller-dict.txt' on line 1 (tf): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 2 (V3): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 3 ( 3O): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 4 ( E{): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 5 (!J6): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 6 (!Nt): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 7 ("<p): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 8 ("?8): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 9 ("Pw): Separator unmatched
Hashfile 'hashkiller-dict.txt' on line 10 (#/p): Separator unmatched
----Snip---
Thanks in advance
-joe
Posts: 2,267
Threads: 16
Joined: Feb 2013
you need to specify the file with hashes (the "hash file") first:
for dictionary attack (-a 0) it is:
Code:
hashcat -m 0 -a 0 -w 3 hashes.txt wordlist.txt
as you can see, you need to specify the file with hashes (hashes.txt) before the file with words (wordlist.txt)
Posts: 3
Threads: 1
Joined: Apr 2020
(04-26-2020, 08:57 AM)philsmd Wrote: you need to specify the file with hashes (the "hash file") first:
for dictionary attack (-a 0) it is:
Code:
hashcat -m 0 -a 0 -w 3 hashes.txt wordlist.txt
as you can see, you need to specify the file with hashes (hashes.txt) before the file with words (wordlist.txt)
I did do that...here is the command i used:
hashcat -m 1420 myunshadow.txt hashkiller-dict.txt
Posts: 2,267
Threads: 16
Joined: Feb 2013
04-26-2020, 09:22 AM
(This post was last modified: 04-26-2020, 09:24 AM by philsmd.)
make sure that each line of the file myunshadow.txt has hashes fomatted in the correct way:
https://hashcat.net/wiki/example-hashes
or use
Code:
hashcat -m 1420 --example-hashes
to see how the lines must look like.
My guess is that you have a hash file with invalid hashes.
but just look above, hashcat told you:
Code:
Hashfile 'hashkiller-dict.txt' on line 6 (!Nt): Separator unmatched
so you definitely did something wrong before and incorrectly specified the hashkiller-dict.txt file as a hash file
Posts: 3
Threads: 1
Joined: Apr 2020
(04-26-2020, 09:22 AM)philsmd Wrote: make sure that each line of the file myunshadow.txt has hashes fomatted in the correct way: https://hashcat.net/wiki/example-hashes
or use
Code:
hashcat -m 1420 --example-hashes
to see how the lines must look like.
My guess is that you have a hash file with invalid hashes.
but just look above, hashcat told you:
Code:
Hashfile 'hashkiller-dict.txt' on line 6 (!Nt): Separator unmatched
so you definitely did something wrong before and incorrectly specified the hashkiller-dict.txt file as a hash file
I guess i dont understand because hashcat isn't complaining about the hash file its complaining about the dictionary file.
Thanks for helping, i appreciate it
Posts: 2,267
Threads: 16
Joined: Feb 2013
That's not the correct assumption.
It literally just said:
Code:
Hashfile 'xyz' on line 6 ...
The most important part is the "Hashfile" part. The filename of course is not what the error message is all about, it is just what you specified in the command line (an arbitrary file name).
It doesn't matter how you name your files or if they contain "dict" for wordlist etc...
The only important thing is that the command line and all its arguments are correct (and in some cases they also need to be in the correct order).
just try the example500.sh (or for windows example500.cmd) from the hashcat folder and see how the commands normally look like. of course the example500 file is for -m 500 and therefore you need to adapt both the hash type (-m) and the hash file (example500.hash into myunshadow.txt).
Posts: 1
Threads: 0
Joined: Jul 2024
07-02-2024, 09:35 AM
(04-26-2020, 09:35 AM)philsmd Wrote: That's not the correct assumption.
It literally just said:
Code:
Hashfile 'xyz' on line 6 ...
The most important part is the "Hashfile" part. The filename of course is not what the error message is all about, it is just what you specified in the command line (an arbitrary file name).
It doesn't matter how you name your files or if they contain "dict" for wordlist etc...
The only important thing is that the command line and all its arguments are correct (and in some cases they also need to be in the correct order).
just try the example500.sh (or for windows example500.cmd) from the hashcat folder and see how the commands normally look like. of course the example500 file is for -m 500 and therefore you need to adapt both the hash type (-m) and the hash file (example500.hash into myunshadow.txt).
Phil what on earth is with the attitude
Posts: 97
Threads: 1
Joined: Apr 2023
You are missing attack type -a 0
hashcat -m 1420 -a 0 myunshadow.txt hashkiller-dict.txt
(04-26-2020, 09:03 AM)jhclifton Wrote: (04-26-2020, 08:57 AM)philsmd Wrote: you need to specify the file with hashes (the "hash file") first:
for dictionary attack (-a 0) it is:
Code:
hashcat -m 0 -a 0 -w 3 hashes.txt wordlist.txt
as you can see, you need to specify the file with hashes (hashes.txt) before the file with words (wordlist.txt)
I did do that...here is the command i used:
hashcat -m 1420 myunshadow.txt hashkiller-dict.txt
Posts: 346
Threads: 3
Joined: May 2010
(07-02-2024, 06:42 PM)aikiuslik Wrote: You are missing attack type -a 0
hashcat -m 1420 -a 0 myunshadow.txt hashkiller-dict.txt
Not the issue here, if not specified it will use -a 0 anyway, the problem is what phil pointed out.