I have a website that uses an "in-house" cms and I don't know the login details. The platform itself doesn't have the "reset your password" functionality. I do have access to ftp and phmyadmin and I found the SQL table containing the user details, but of course the password is MD5 encryption. I tried manually creating a user in php my admin and filling in a password encrypted in MD5 (used a md service online for that), but it still doesn't work. Does anybody know other tricks I can use?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
you can md5('your_pass') for an existing user in user table but are you sure password is md5 encrypted? |
|||||||||
|
|
If you have FTP access you can look at the app sources, and see how they store and check passwords. Then you can see how it stores and verifies passwords and update database table accordingly. Or, you can turn bypass the authentication altogether. |
|||
|
|
You need to look at the CMS source. There will likely be some kind of salting/other process involved in hashing the passwords. A quick glance at the source will tell you everything you need to know to generate your own password. Guessing that its undecorated MD5 is a longshot... |
|||||||||
|