PrestaShop Password
#3
(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.
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
dee40963841a07de12514a3563137db8

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.
But in doing so I should regenerate passwords for all users too. Is not there a way to recover my password with hashcat?


Messages In This Thread
PrestaShop Password - by LuigiMdg - 12-06-2017, 10:06 PM
RE: PrestaShop Password - by philsmd - 12-06-2017, 10:32 PM
RE: PrestaShop Password - by LuigiMdg - 12-06-2017, 11:54 PM