Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other How to secure your own Control Panel Re: How to secure your own Control Panel

#135354
CrocoDillon
Participant

No, once you hash it, you’ll never get it back (especially when it’s salted, otherwise you could brute-force it with rainbow tables if the password is weak). That’s the whole point :)

When some one wants to login, he enters his password, then your back-end will have to hash it exactly the way it was hashed in the first place (same algorithm, same salt) and then you can compare the hash with the hash from the database.