I have a SQL query that goes like this:

UPDATE User SET flag='Y' WHERE email=(SELECT email FROM Forum WHERE id='$id');

Because the email address can consist of single quotes and some special characters (s*a'{f`%$.=*+~&^#|g!/hd@[66.112.45.34] and vy."(),:;<>[]".VY."vy\\ \@\"vy".unal@str.exe.com are both valid email addresses), I am not sure whether it is necessary to do the subquery separately, escape the output, followed by using it in the main query.

What is your suggestion?

ADD NOTE: $id is a safe number.

link|improve this question

75% accept rate
When in doubt, escape it. There's nothing to lose. – Maxpm Nov 14 '11 at 13:00
your query is ok. no need to escpe anything there. – Randy Nov 14 '11 at 13:02
@ Randy, can you explain why? – Ben Huh Nov 14 '11 at 13:03
1  
Because it's not leaving mysql - injection attacks happen where data crosses between different environments (not just [some language]/database but also some [lang]/javascript, [some lang]/[other lang], – symcbean Nov 14 '11 at 13:13
2  
Consider re-writing the query to use a join instead of a subquery. Something like this should be much faster: UPDATE User, Forum SET User.flag='Y' WHERE User.email=Forum.email AND Forum.email = $id; – Mike B Nov 14 '11 at 13:52
show 4 more comments
feedback

3 Answers

up vote 1 down vote accepted

You don't need to escape anything because there is a subquery, but of course you need to escape the id value to put it in the string.

If possible, you should use a parameterised query instead of concatenating the value into the string. Then you don't have to escape anything.

link|improve this answer
You didn't write the reason, symcbean wrote down the reason. Is he correct? – Ben Huh Nov 14 '11 at 13:23
@BenHuh: His explanation covers the most common cases, but it's not correct. Just because the data doesn't leave the database doesn't automatically mean that it doesn't need to be escaped. If you create a query dynamically in the database, any values that you put in the query still needs to be escaped. – Guffa Nov 14 '11 at 13:30
then what do you mean by "You don't need to escape anything because there is a subquery"? Sorry, I don't quite understand. – Ben Huh Nov 14 '11 at 13:33
@BenHuh: The result of the subquery is a string value that is used directly as a value, it's not used as a string literal in a string that is parsed as a new query. – Guffa Nov 14 '11 at 14:32
feedback

You should not need to escape anything in your subquery. However, whatever query inserts email originally to your database needs to escape that field. Escaping should take please when you add or modify the email field.

link|improve this answer
You don't escape a value because it's going to be stored in the field, you escape the value to use it in the query. How you use the value in the query is irrelevant. – Guffa Nov 14 '11 at 13:17
@Guffa I was more making the point that the value of the email field should already be clean by the time they are using it in the sub-query, and that the query is question doesn't have any user generated data being injected directly into it. – danielrsmith Nov 14 '11 at 13:23
@ danielrsmith, I think there is a misconception that the data is clean. The escaping is for the query itself, not the data. – Ben Huh Nov 14 '11 at 13:26
feedback

The information needed to answer is: "Where does $id come from?"

If it can be modified externally it needs to be quoted. If it is for example passed as an GET argument http://www.foo.com/foo.php?id=222 it needs to be quoted (same for POST).

With a little bit of quotation the parameter can close the subquery and every query could be executed, e. g., by providing "'); DELETE * FROM User; --" as a value for $id:

UPDATE User SET flag='Y' WHERE email=(SELECT email FROM Forum WHERE id=''); 
DELETE * FROM User; --');
link|improve this answer
My question has nothing to do with $id but rather the email which is queried from the table Forum and subsequently applied again in the main query. You can assume that $id is a safe number. – Ben Huh Nov 14 '11 at 14:13
Well, then you don't have to. Replacec $Id by "query condition" in my question above. If it's pure internal data, then you don't have to. Or would you escape while concatinating strings in a select clause? – H-Man2 Nov 14 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

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