MyBB Community Forums

Full Version: how to find my password hashing type in mybb 1.6.9?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi,
how i can find my password hashing type in mybb 1.6.9?
i see ./inc/functions_user.php...
and is it type md5(md5(salt).password) ?
or i'm in trouble?
thanks.
Passwords are hashed one way. You cannot reverse the process.
(2013-03-26, 12:47 PM)Nathan Malcolm Wrote: [ -> ]Passwords are hashed one way. You cannot reverse the process.
i'm try to find type of hash in mybb 1.6.9 only
i try to test my md5 uncracker program(algoritms) and test some easy passwords in this type for mybb,i know that cannot reverse the process...
The passwords are hashed with the MD5 algorithm. They use salts to increase security.
(2013-03-26, 01:15 PM)Nathan Malcolm Wrote: [ -> ]The passwords are hashed with the MD5 algorithm. They use salts to increase security.

yeah i know but which types of salted md5?
md5($pass.$salt)
or
md5(md5($pass).$salt)
or
md5(md5($pass).md5($salt))
or
md5($pass.md5($salt))
or
md5(md5($salt).$pass)
or.......
which type?
i see ./inc/functions_user.php but i can't recognize type Huh
thanks