Sha1DASH - 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: Sha1DASH (/thread-11070.html) |
Sha1DASH - ganon551 - 10-16-2022 Hi there, I'm trying to crack sha1dash hashes. I saw on thisĀ https://github.com/hashcat/hashcat/issues/2913 link that I have to add a -- to the beginning and end of the salt on my hash file. Which I did. Then I add the -j '$-$-' option after my wordlist name, but I get a token length exception. Using 120 mode. The hash file looks like this : --salt--:plain I also triedĀ --salt--plain But no more luck. Have you ever cracked this kind of hashes ? Thank you. RE: Sha1DASH - marc1n - 10-16-2022 Compare your format hash witch example https://hashcat.net/wiki/doku.php?id=example_hashes RE: Sha1DASH - Banaanhangwagen - 10-16-2022 Did you try the search function on this forum ? The first result gives you this : https://hashcat.net/forum/thread-9143.html In short: when using -m 120, the salt needs to be prepended and appended with "--"; the password needs to be appended with "--". Your cracked result needs to look like this: HASH:--SALT--ASS-- Even shorter: simply use "-m 27200" RE: Sha1DASH - ganon551 - 10-16-2022 Hi, Thank you it worked with the 27200 mode |