![]() |
PrestaShop Password - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: PrestaShop Password (/thread-7082.html) |
PrestaShop Password - LuigiMdg - 12-06-2017 Hi.. I've lost the password of my PrestaShop account and the mailer not work.. I've try to change the settings of mailer by phpMyAdmin but not work..! I can access by FTP and by phpMyAdmin This is the possible salt hash: Code: define('_COOKIE_KEY_', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'); I suppose that is the _COOKIE_KEY_ but I wait you.. RE: PrestaShop Password - philsmd - 12-06-2017 you could just generate a new one and replace the old hash that you have within your database with the newly generated one. The algorithm is md5 ($salt . $pass) salt concatenated with the password (first the salt, no separator) the salt is just the _COOKIE_KEY_ (see https://stackoverflow.com/a/30095271) You could just generate a new one like this: Code: echo -n bqfkadvejm2cwysvjib4prvh5lofpxsb3lvdndbbwmj87zita3ijxegipassword1234 | md5sum and (after making a backup of your whole database and config) replace you original hash with this one (dee40963841a07de12514a3563137db8) and login with the password "password1234" (without quotes). BTW: you are not allowed to post hashes here. it's against the forum rules. You will get banned. RE: PrestaShop Password - LuigiMdg - 12-06-2017 (12-06-2017, 10:32 PM)philsmd Wrote: you could just generate a new one and replace the old hash that you have within your database with the newly generated one.But in doing so I should regenerate passwords for all users too. Is not there a way to recover my password with hashcat? |