![]() |
Unknown hash and original: not identifieably, is hashcat able to find out? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Unknown hash and original: not identifieably, is hashcat able to find out? (/thread-6195.html) |
Unknown hash and original: not identifieably, is hashcat able to find out? - tiator - 01-10-2017 Hello ![]() I have a hash and its corresponding unhashed value. I tried to put the hash into hash identifiers, but no luck, I do not know what the hash is. I tried online identifiers and hash-identifier in The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) linux. Is it possible for hashcat to identify the hash? Is it possible to had hashcat the hash and a text file with the unhashed value, and hashcat is able to identify it? RE: Unknown hash and original: not identifieably, is hashcat able to find out? - royce - 01-11-2017 https://hashcat.net/wiki/doku.php?id=frequently_asked_questions#how_can_i_identify_the_hash_type RE: Unknown hash and original: not identifieably, is hashcat able to find out? - rico - 01-11-2017 (01-10-2017, 04:02 PM)tiator Wrote: Is it possible to had hashcat the hash and a text file with the unhashed value, and hashcat is able to identify it? Sort of. Put the passphrase (unhashed value) into a text file called words.txt in the hashcat folder hashcat -m XXXX -a 0 yourhashvalue words.txt Go through all the supported types (XXXX above) until you get a hit. Obviously try and match the hash with the right length to be in with a shot first too. E.g.: SHA-1 hash of blahblahblah is 25f683212e147aad3a11a8dd89b8de988be57349 Code: hashcat64.exe -m 100 -a 0 25f683212e147aad3a11a8dd89b8de988be57349 words.txt |