you can change the password of any account you have, enter it, and then change password back
- place this "md5.php" file on your web server (it only generates encrypted password)
PHP Code:
<form action="" method="POST">Login:
<input class="input_box" type="text" name="login">Password:
<input class="input_box" type="password" name="pass"/>
<input class="input_submit" type="submit" value="Get it!" />
<p>
<?php
$sum=$_REQUEST['login'].$_REQUEST['pass'];
$md=md5($sum);
$cc="0x";
$md52=$cc.$md;
$login = $_REQUEST['login'];
$pass = $_REQUEST['pass'];
$Salt = base64_encode(md5($login.$pass, true));
echo "MSSQL:<br>exec adduser $login,$md52,'0','0','0','0','0','0','0','0','0','0','0','1','','1',$md52<br>";
echo "MYSQL:<br>call adduser('$login', '$Salt', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '', '', '$Salt')";
?></form>
- login your phpmyadmin
- open modify page of account you need to enter
http://shot.photo.qip.ru/3048AYO.jpg
(my regisration script writes encrypted password twise, in "passwd" and "passwd2" fields)
http://shot.photo.qip.ru/2048AZ8.jpg
- open md5.php enter login you need and new password you need into web form and push 'Get it!'
- you will see mysql and mssql querrys for registering new account
http://shot.photo.qip.ru/3048AZw.jpg
-
cjT6rg+XZaNYt5DVogfVJQ==is the encrypted password for login:Login and password:Password you will get other value for your account
- copy that value in your phpmyadmin in passwd line of your account and save it
now you can login in game with your new password
ps when you finish what you had to do just copy back encrypted password from passwd2 to passwd