Posts: 11
Threads: 2
Joined: Jul 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.
Posts: 2,267
Threads: 16
Joined: Feb 2013
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)
Posts: 11
Threads: 2
Joined: Jul 2020
(07-31-2020, 10:22 PM)philsmd Wrote: 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)
Heh, Im a fool, I had -O on, you always deliver Phil, thanks.