My PHP is very rusty. I have a md5 hash that's being passed via get to a script and then I'm grabbing it like this:
$id = $_GET['id'];
Obviously there's a security risk here...I was thinking of checking the string length to make sure it's 32 characters long but that doesn't seem very robust to me. What else could I do to make it more secure?
thanks
$idafter you get it? – Blorgbeard Mar 11 '11 at 10:08md5($userID . $userEmail . $_SERVER['REQUEST_TIME']), as it's quite impossible to guess when exactly (request_time) and which user (user id, email) asked to change the password. Hash itself is also hard-to-guess as it can have huge number of possible values. – binaryLV Mar 11 '11 at 10:18