php - How to reset OpenCart 2+ administrative password?
161
Apparently the new (v2) OpenCart's password encryption scheme is not a simple md5 hash. I attempted to search the net for a way to reset the admin password after I changed hosts for my OpenCart installtion but could not find anything.
Thank you.
Answer
Solution:
If you just need to regain access, and change your password then you can do so pretty easily. Open
system/library/user.php
(system/library/cart/user.php
in later versions) and find the line beginningBefore the
WHERE
put a#
changing it toand save. This allows you to log in using the first account (usually the default admin account) without any user and password. As soon as you do, reverse this and save again. You'll still be logged in and can edit the user data editing the password as you wish
Answer
Solution:
RESET OPENCART ADMIN PASSWORD BY EDITING MySQL DATABASE Via
phpMyAdmin
orMySQL
command promptThe only way to reset the administrative
password
is modifying the password column inoc_user
viaphpMyAdmin
, something like hunting the silk road or either by changing thepassword
column viaMySQL
command prompt. You cannot generate new Salt & Hashing withMySQL
command prompt as explained at the end. Follow these below steps:Navigate to
oc_user
table and look for columns with name password & salt and change the values for the desireduser_id
password: d1c194daffb03fc2653027c87f76a12a4eaeac5f
salt: x3x6r693j
This combination of string or hash changes/alters the administrative password to “
password
” (without the quotes) for the desired user. This method might create a minor security risk as the salt will be a publicly known data, which is published here.Click “Go”. It will change your password to password. Now, log into the OpenCart Admin (www.yourwebsitename.com/admin) Dashboard with your existing username and the new password.
Username: < Existing Username >
Password: password
By knowing your user_id, all the above steps are done from one command:
Explaination:
The password was encrypted with the randomised salt
The above method is used to encrypt the password from the file admin/model/user/user.php
Results: d1c194daffb03fc2653027c87f76a12a4eaeac5f
For Salt:
uniqid()
,password_hash
andpassword_verify
are purely PHP functions. They have nothing to do with MySQLpassword_hash does not use the MD5 algorithm for hashing you password. md5 and password_hash() produce two different lengths
Navigate to Tool: OpenCart 2.0+ User Password Reset Generator you can specify your New Password and Salt
Answer
Solution:
For login admin password 0ZReKeFZM75Y set in
database > oc_user
password 0c7a864c5a737f08f001f3123849ba5e03af3d06
and salt HYSQS59P9
to admin user row.
Answer
Solution:
Password is stored by OpenCart (from
admin/model/user/user.php
) asAssuming you have DB access you can retrieve the salt as
Then generate the new hash, e.g. in bash ($SALT being the result of the previous command) :
Finally, update the DB with this new hash :
Then log in with the new password.
Answer
Solution:
You can generate a new password using the script below:
Answer
Solution:
Assuming you have access to the php files, open file system/library/cart/user.php in a text editor and change line 40, the 1st line of method login(), from:
to:
This removes the password check,so you will always be logged in regardless the password you entered. After you are logged in, immediately change this line back as it will allow anybody to login under any user account, then change your password under "Users - Users - Edit".