Sha512(pass.salt), 128char salt.
#1
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 Smile

Its Sha512(pass.salt) with 128char salt.
Reply
#2
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)
Reply
#3
(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.
Reply