The password recovery mechanism I keep bumping into for joomla, art least, is to add a known, hashed string to the password column of the user table. What that says to me is that the default hashing mechanism is not salted. Am I wrong? Also, I am just curious to know whether or not drupal salts passwords by default?
Asked
Active
Viewed 176 times
2 Answers
3
Yes, Joomla does salt the passwords before they are md5 hashed.
For a more detailed explanation on the process and how to split them up, please see this: joomla password encryption
Hope this is what you are looking for.
-
Kind of, but the wiki on Joomla says that we should input a known password. Isn't the purpose of salt to defeat ALL of these ['known-password'][1] databases? [1]: http://docs.joomla.org/How_do_you_recover_your_admin_password?#Change_the_Password_in_the_Database – Wolfpack'08 Jul 27 '12 at 03:01