vote up -1 vote down star

I'm trying to see if a user logging in has entered the right password, which is stored as an md5 hash. when i echo the hash of the password entered, it matches exactly the hash of the one in the database, but it still thinks its false. Heres the code:

echo md5($_POST['pass']);

if ($user->match_password($_POST['pass']) == true) {

    ...

} else {

    ...

}

it tries to execute the else code above ^

class user {

    ...

    var $password;

    ...

    function user($id) {
    	global $DB;
    	$this->db = new db($DB['host'], $DB['user'], $DB['pass'], $DB['database']);

    	$this->user_id = $id;
    	$u_result = $this->db->run("select * from users where use_id = " . $this->db->escape($this->user_id));

    	...

    	$this->password = $u_reuslt[0]['password'];

            ...
    }

        ...

    function match_password($password) {
    	return ($this->password == md5($password));
    } 
}
flag

4  
I'm guessing the $u_reuslt variable is just a typo...? – deceze Jul 22 at 5:07
@deceze: I suspect you've found the bug. I hope the poster knows of copy/paste! – derobert Jul 22 at 5:09
1  
yes i believe they did. If you could post that as an answer i'll accept it. – The.Anti.9 Jul 22 at 5:13

2 Answers

vote up 5 vote down check

You typoed your variables, see comment above.

E_ALL is your friend. ;o)

link|flag
vote up 1 vote down

see in the DB the password field , if the md5 password insert correctly , maybe cut because not have enough length.

Second, what kind of column is password? It should be a

tinyblob OR BINARY(32)

, because the results of an md5 hash can be mangled if stored in a varchar.

links :

http://www.experts-exchange.com/Web/Web_Languages/PHP/Q_21578660.html

http://forums.mysql.com/read.php?30,16535,16617#msg-16617

link|flag
what i did to test that is i echo'd the hash from the posted password, copied and pasted that into a query in phpmyadmin and ran it to match the row, and it matched. so i know they are the same. – The.Anti.9 Jul 22 at 5:09
i edit the answer – haim evgi Jul 22 at 6:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.