how can i know value of string which is used as salt for joomla salt enhanced password encryption??
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Joomla generates a random salt for each password. Here you can find valuable information on how to work with the joomla methods to generate passwords:
http://forum.joomla.org/viewtopic.php?f=476&t=308499
From that bit you can see that the salt is stored after the password with a colon as delimiter.
[EDIT]
I just needed to write an Authorisiation Validator with Zend_Auth to validate against a Joomla (1.0) install and I thought I’d update the information here about it. A snip of my code.
[/EDIT]