bigturnip
03-31-2006, 10:14 AM
I bought a site with a copy of sebflippers multi forum script installed and haven't done much with it for the last few months. Only problem is I don't know the admin password and it is encrypted in MySQL.
Can someone help me retrieve the password or more likely reset it so I can get admin access again?
I'm guessing this is quick job 5 minute, but if you think it will take longer let me know.
SimonMc
03-31-2006, 10:33 AM
if it's an MD5 hash password...look on google for a known word that is hashed...then find the password in the MySQL database and overwrite the password with the hash of the known word.
This should work for you as I have done this in the past when I lost track of a password too.
SimonMc
03-31-2006, 10:37 AM
This is the MD5 hash for the word welcome
40be4e59b9a2a2b5dffb918c0e86b3d7
Try pasting the password here?
http://www.md5decrypter.com/
If it's *just* MD5, it might give you the right one.
MaximSupport
03-31-2006, 11:42 AM
Dear bigturnip,
Hello,
We can do this for you.
Best Regards.
Gunther
03-31-2006, 01:47 PM
Dear bigturnip,
Hello,
We can do this for you.
Best Regards.
You could cut down 90% of that post and it'd still make perfect sense.
Stop the bloat.
allengeorge
04-01-2006, 07:46 AM
Hello,
Its impossible to retrieve back the already encrypted password.
We can reset the password of mysql in case you have the server ssh access.
Just skip the table lookups when starting mysql and you can reset the mysql with ease.
Regards
Allen
allengeorge123@gmail.com
InCheck Adam J
04-01-2006, 01:32 PM
Resetting an encrypted password to an encrypted password that you know is a 5 minute process and makes a lot more since then playing around with decryption as allengeorge said.
Something in a php file like:
$strng = "newpass";
$md5str = md5($strng);
$cryptstr = crypt($strng);
echo("MD5 is $md5str and Crypt is $cryptstr");
Then just copy paste the result into mysql.