MyBB Community Forums

Full Version: Security-how?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would to do wapgate of mybb,but i dont understand how is working security in mybb(salt,loginkey and password).can someone explain it to me?thx a lot
Please take a look at this thread.
Hey,

Well the way mybb deals with passwords is so simple but strong.
The password in the database is stored hased, by going through through some procedure whihc is md5() of the the md5() of the real password, added to the md5() of the salt. So it is something like md5(md5($salt).$password);.

The login key, is mainly to ensure clean handling of the cookies while logining in, so in case the salted password which will be in the cookie was different than the login key, the login attempt will fail.

regards

GOSH I WAS SLOWSad
Thx guys.you can lock this.