Sha512(pass.salt), 128char salt. - 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: Sha512(pass.salt), 128char salt. (/thread-9431.html) |
Sha512(pass.salt), 128char salt. - kkost - 07-31-2020 Is there any support or any way of cracking hashes with extra large salts yet? Havn't been here for a long time. If there is any other module I can fairly easy modify to create it, would be nice if you could point me in the direction Its Sha512(pass.salt) with 128char salt. RE: Sha512(pass.salt), 128char salt. - philsmd - 07-31-2020 did you try -m 1710 = sha512($pass.$salt) ? see https://hashcat.net/wiki/doku.php?id=example_hashes there are some differences with length limits between optimized (using -O) and pure kernels (without -O). also make sure to check whether the salt is in hex (using --hex-salt) or it's used AS-IS (no --hex-salt) RE: Sha512(pass.salt), 128char salt. - kkost - 07-31-2020 (07-31-2020, 10:22 PM)philsmd Wrote: did you try -m 1710 = sha512($pass.$salt) ? Heh, Im a fool, I had -O on, you always deliver Phil, thanks. |