Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was told in a previous question that my query is prone to SQL injections.

get_stats = mysql_query("SELECT * 
                               FROM visitors 
                              WHERE site='$_GET[site]' 
                                AND date BETWEEN '$start_date' AND '$end_date' ");

What would be the easiest way to approach this problem? And do you have some further reading on the subject of injections? (something that I might miss on Google). Thanks!

share|improve this question
9  
As long as no one ever navigates to "page.php?site=google.com';drop database--", you're fine ;) – Juliet Sep 11 '09 at 21:17
3  
I always try ';wreak havoc; --, but I've yet to hit a DB that implements the wreak statement. One of these days... – Eric Sep 11 '09 at 21:22
1  
mysql_query() doesn't support multi-statements, so ;drop database---like attacks won't work in this case ;-) – VolkerK Sep 11 '09 at 21:33
Volkerk, I tried it on test DB and you're right, the drop didn't work. – Norbert Sep 12 '09 at 7:24

3 Answers

up vote 15 down vote accepted

Use Prepared Statements.

In most cases, Prepared Statements do the job of combining your query with your parameters, in a safe manner.

share|improve this answer
Thanks! – Norbert Sep 12 '09 at 9:20

$_GET['site'] is a value that comes straight from the URL in the browser which means a user could easily change this value to anything they want, you should check/sanitize that value, all values actually before sending it to a database.

Something like this would be a start, could still use more work and there is many ways of doing it, I would create a custom function/class to easily pass all variables through sitewide which can simply repetitive stuff like this

$site = mysql_real_escape_string($_GET['site']);
$start_date = mysql_real_escape_string($start_date);
$end_date = mysql_real_escape_string($end_date);

get_stats = mysql_query("SELECT * FROM visitors WHERE site='$site' AND date >= '$start_date' AND date <= '$end_date' ");
share|improve this answer
Don't forget to escape start_date and end_date, as well. – Ben Blank Sep 11 '09 at 21:25
you don't just want to sanitize before sending to the database... sanitize before you do ANYTHING with it! SQL injection is just one (common) problem that you run into with this sort of thing, but you can also get a host of others, such as HTML and JS injection... – rmeador Sep 11 '09 at 21:28
good points, I updated – jasondavis Sep 11 '09 at 21:34

mysql_real_escape_string is the most basic and easiest form of security here.

share|improve this answer
1  
this won't save you in all cases... suppose the column being compared against is a number, in which case the variable is unquoted. That escape function won't do anything to prevent "5 or 1=1" (for example) from being put in there, AFAIK. – rmeador Sep 11 '09 at 21:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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