vibesolutions
07-11-2004, 09:48 PM
the admin password:
Does anyone know how to get in and get it ? I will hire you to do this easy job.
Does anyone know how to get in and get it ? I will hire you to do this easy job.
![]() | View Full Version : Lost a password to my site powered by phpnuke vibesolutions 07-11-2004, 09:48 PM the admin password: Does anyone know how to get in and get it ? I will hire you to do this easy job. SimsFreak 07-11-2004, 10:24 PM Simply look in the database with PHPmyAdmin and if it's encrypted create another user account with the same variables with a new pass. 2slick 07-11-2004, 10:30 PM just update the password field vibesolutions 07-11-2004, 10:35 PM Originally posted by SimsFreak Simply look in the database with PHPmyAdmin and if it's encrypted create another user account with the same variables with a new pass. which one? so one user: admin for example i can have two of them in the databae with two passes? Sharif 07-11-2004, 10:39 PM I'll do it for free. Let me know if I can help. 2slick 07-11-2004, 10:46 PM UPDATE nuke_users SET user_password='5F4DCC3B5AA765D61D8327DEB882CF99' where username='admin' --- the new password is password an MD5 encryption Gavin Miller 07-12-2004, 08:37 PM actually it would be nuke_authors not users.....users are just normal website user but the Superuser and all other admins are in authors. 2slick 07-12-2004, 09:34 PM Originally posted by Gavin Miller actually it would be nuke_authors not users.....users are just normal website user but the Superuser and all other admins are in authors. Thanks Gavin, i really sometimes get confused with phpNuke and PostNuke. :bawling: :bawling: :bawling: Heres the correct query UPDATE nuke_authors SET pwd='5F4DCC3B5AA765D61D8327DEB882CF99' where name='admin' :D vibesolutions 07-12-2004, 09:59 PM No data returned when i put in UPDATE nuke_authors SET pwd='5F4DCC3B5AA765D61D8327DEB882CF99' where name='admin' Gavin Miller 07-13-2004, 08:15 AM Is your superuser (aka admin login) another username other than admin....if so replace admin with that users. Napa 07-13-2004, 08:23 AM Well what I would do is : 1. Create a new user e.g. test with a pass of test or anything. 2. Logon to the database, go to the users table and see the MD5 for the user test. 3. Then, edit the password field of the admin id in the database with that MD5 and then logon with the password test / whatever you gave. |