cannot recognise hash - 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: cannot recognise hash (/thread-11794.html) |
cannot recognise hash - Drivable1488 - 01-28-2024 HI There, I am working on a CTF challenge (HTB - Bizness) and it's my first time using Hashcat. I have found the following Hash, which I know has root pwd in it: Code: $SHA1$d$uP0_QaVBpDWFeo8-dRzDqRwXQ2I I know it's SHA1 w salt. The Salt is the character d. However when using hashcat with the following code it says separator unmatched: Code: hashcat -m 120 -a 0 'hash.txt' /path/to/wordlist I changed to this format as well and tried: uP0_QaVBpDWFeo8-dRzDqRwXQ2I:d But still returns a token length exception. Anyone has a clue on why it doesn't work? If it helps I know the pwd is monkeybizness and this python script can successfully find it: Code: import hashlib RE: cannot recognise hash - Banaanhangwagen - 01-29-2024 You need to use -m 124 (and also put the hash in hex) See https://hashcat.net/wiki/doku.php?id=example_hashes |