SA-MP Forums Archive
Problem with crypted password - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Problem with crypted password (/showthread.php?tid=605228)



Problem with crypted password - GodLight - 16.04.2016

Hello guys.
I got a problem with creating account and crypted password.
I will explain you step by step.
1. I create account to log on the server.
2. On mysql showa me example acc: name pass: name.
3. When I try to log on UCP, tell me that the password is incorect.
4. I reset password by email (forgot password).
5. I put the nee password same at it was (name).
6. On mysql this time show many letters and numbers.
7. I log on UCP and it works.
8. I try to log again to server and tell me that the password is incorect.
9. If i whrite all the letters and numbers from mysql it works.
The question is: How can i make the server to read that cryptes password from mysql or how I can make UCP to read passwors as normaly, not crypted.

THANKE YOU!


Re: Problem with crypted password - doreto - 16.04.2016

Quote:
Originally Posted by GodLight
Посмотреть сообщение
The question is: How can i make the server to read that cryptes password from mysql or how I can make UCP to read passwors as normaly, not crypted.

THANKE YOU!
Why would you want to read "passwords as normaly"? What is the point of been hashed then ?


Re: Problem with crypted password - itsCody - 16.04.2016

Read this.
http://php.net/manual/en/function.hash.php


Re: Problem with crypted password - GodLight - 16.04.2016

It doesnt help so much.
I think this is the script for crytable password.

PHP код:
#####################################################
$guest=0;
$numes $_COOKIE['user'];
$parola $_COOKIE['pass'];
if((isset(
$numes))&&(isset($parola))) {
$userc $_COOKIE['user'];
$passc $_COOKIE['pass'];
}
else
{
$guest=1
}
if(
$guest==0) {
$USERQ "SELECT Name, Password FROM players WHERE Name='$userc' AND Password='$passc'";
$CHECKU mysql_query($USERQ) or die('DonT Try To hack.');
$user $userc;
$pass $passc;
$guest=0;
if(!
mysql_num_rows($CHECKU)=="1")

header("location:logout.php");
}
}
##################################################### 



Re: Problem with crypted password - GodLight - 16.04.2016

Quote:
Originally Posted by doreto
Посмотреть сообщение
Why would you want to read "passwords as normaly"? What is the point of been hashed then ?
The point is that the server create account with normal password.
Account: Name
Password: Name

In mysql show me the same and if I try to log on UCP with this acc+pass, tell me the pass is incorect because is not crypted. If I give forgot password to reset it and change it again in to "Name", in mysql will show me a crypted password, lots of letters+numbers and If I try again to log on game with Name-Name, tell me password is incorect because the game know that crypted password.

Is a little complicated...