it is possible? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: it is possible? (/thread-3343.html) |
it is possible? - Pachirlz - 05-02-2014 I have a problems cracking my hashes according to the experts I have a md5 hashes and SHA256 hashes salted but, with unknown salts. Is it possible to bruteforce the salt to find out what is the salt if I know the plain text for some of my hashes? RE: it is possible? - unix-ninja - 05-02-2014 yes, it is. RE: it is possible? - Pachirlz - 05-03-2014 (05-02-2014, 11:07 PM)unix-ninja Wrote: yes, it is. How!? I was thinking a dictionary atack for the salt value? or something like that RE: it is possible? - Rolf - 05-04-2014 You need to understand how mirrored hashes work. For example, you have a sha512($pass.$salt) algorithm, so in order to brute force the salt you'd need to use sha512($salt.$pass), and configure the pseudosalt as the password. |