vote up 0 vote down star

Hello,

I am setting a cookie something like:

$_COOKIE['test'] = SHA1('124'.'mysalt');

Now 124 is my id which i want. So in my mysql table, I am trying to run a query like:

$sql = ("SELECT * FROM users WHERE SHA1(`id`) = '".mysql_real_escape_string($_COOKIE['test'])."'");

Problem is how to do I add the "mysalt" to the sql query? Because else I want get the correct id.

Thank you for your time.

flag

76% accept rate

4 Answers

vote up 1 vote down check

Use can use Concat() for that.

SELECT ... Sha1( Concat(`id`, 'mysalt') )=...
link|flag
Keep in mind: MySQL cannot use an index to speed up the search in this case. It might be better to add another field to the table , so you can query something like SELECT ... WHERE id=124 AND tempkey='87gesafouvgbaesofiuigsaf' – VolkerK Jul 1 at 8:20
vote up 1 vote down

The solutions already provided probably will work just fine, however are you certain you want to do this? If the field "id" is really a distinct identification you can use "LIMIT 1" to stop mysql from searching thru all your items. Another thing is, why don't you use a separate precomputed field for this? I mean in every query mysql unnecessarily needs to compute all these sha1 values.. One last thing. I'm uncertain why you are using your approach, but my best guess is to implement some sort of session key. I thing this is a bad idea for a couple of reasons: If someone gets holds on your salt, he has access to all your accounts. If someone sniffs one "session" he can reuse it whenever he wants to. Choosing a weak salt could have serious consequences. HTH.

link|flag
vote up 0 vote down

The query should be:

$sql = ("SELECT * FROM users WHERE SHA1(CONCAT(`id`,`mysalt`)) = '".mysql_real_escape_string($_COOKIE['test'])."'");

if I understand correctly what you're trying to do.

link|flag
did not check for new answers while I took too long to answer, my bad. – Rob Jul 1 at 8:16
vote up 0 vote down

Use CONCAT:

$sql = ("SELECT * FROM users WHERE SHA1(CONCAT(`id`,'mysalt')) = '".mysql_real_escape_string($_COOKIE[''test''])."'");
link|flag

Your Answer

Get an OpenID
or

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