Newbie Question Sha512 Password not found
#1
I am a complete newbie but would appreciate some guidance as to what I am doing wrong.

I have a SHA512 hash taken from a Linux user password. The password was set to 12345

I have saved this in a file called hash.lst

$6$jvhsGKzr$DJ.V8JMWBvZjyelp12htqtsgAIL.Al.feDI3nujmlWocBERWCEQlRjj39y2QyxKsbl85up0GZkl6H2eItH9BS1

I have also created a small wordlist called small.txt which contains the correct password 12345

Running hashcat with the following command does not find any results

sudo ./cudaHashcat64.bin  -m 1800 -a 0 "/home/tommy/hash.lst" "/home/tommy/wordlists/small.txt"

Session.Name...: cudaHashcat
Status.........: Exhausted
Input.Mode.....: File (/home/tommy/wordlists/small.txt)
Hash.Target....: $6$LNV6YW6q$VWrsT1r8TdCFZmqELsKhvSWfan5QH...
Hash.Type......: sha512crypt, SHA512(Unix)
Time.Started...: 0 secs
Time.Estimated.: 0 secs
Speed.GPU.#1...:        0 H/s
Recovered......: 0/1 (0.00%) Digests, 0/1 (0.00%) Salts
Progress.......: 9/9 (100.00%)
Rejected.......: 0/9 (0.00%)
HWMon.GPU.#1...: -1% Util, 29c Temp, 25% Fan

I am probably doing something really stupid, but would really appreciate if someone could point me in the right direction.

Thanks
#2
Cracks fine for me. Are you sure you don't have leading/trailing whitespace in your wordlist? "12345 " is not the same as "12345".
#3
Thank you for the reply.

I had saved the hash file as hash.lst following a tutorial, renaming this to hash.txt seems to have worked.

Thanks again

Tommy