How is this MySQL query vulnerable to SQL injection? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:35:55Z http://stackoverflow.com/feeds/question/316367 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection 2 How is this MySQL query vulnerable to SQL injection? Ian 2008-11-25T04:28:24Z 2008-11-25T05:29:46Z <p>In a comment on a previous question, someone said that the following sql statement opens me up to sql injection:</p> <pre><code>select ss.*, se.name as engine, ss.last_run_at + interval ss.refresh_frequency day as next_run_at, se.logo_name from searches ss join search_engines se on ss.engine_id = se.id where ss.user_id='.$user_id.' group by ss.id order by ss.project_id, ss.domain, ss.keywords </code></pre> <p>Assuming that the <code>$userid</code> variable is properly escaped, how does this make me vulnerable, and what can I do to fix it?</p> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316372#316372 5 Answer by Vinko Vrsalovic for How is this MySQL query vulnerable to SQL injection? Vinko Vrsalovic 2008-11-25T04:35:01Z 2008-11-25T04:40:20Z <p>Assuming it is properly escaped, it doesn't make you vulnerable. The thing is that escaping properly is harder than it looks at first sight, and you condemn yourself to escape properly every time you do a query like that. If possible, avoid all that trouble and use prepared statements (or binded parameters or parameterized queries). The idea is to allow the data access library to escape values properly.</p> <p>For example, in PHP, using <a href="http://www.petefreitag.com/item/356.cfm" rel="nofollow">mysqli</a>:</p> <pre><code>$db_connection = new mysqli("localhost", "user", "pass", "db"); $statement = $db_connection-&gt;prepare("SELECT thing FROM stuff WHERE id = ?"); $statement-&gt;bind_param("i", $user_id); //$user_id is an integer which goes //in place of ? $statement-&gt;execute(); </code></pre> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316373#316373 12 Answer by Dustin for How is this MySQL query vulnerable to SQL injection? Dustin 2008-11-25T04:35:03Z 2008-11-25T04:35:03Z <p>Every SQL interface library worth using has some kind of support for binding parameters. Don't try to be clever, just use it.</p> <p>You may really, really think/hope you've escaped stuff properly, but it's just not worth the time you don't.</p> <p>Also, several databases support prepared statement caching, so doing it right can also bring you efficiency gains.</p> <p>Easier, safer, faster.</p> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316375#316375 0 Answer by Robert Gould for How is this MySQL query vulnerable to SQL injection? Robert Gould 2008-11-25T04:35:37Z 2008-11-25T04:35:37Z <p>That statement as such isn't really a problem, its "safe", however I don't know how you are doing this (one level up on the API stack). If $user_id is getting inserted into the statement using string operations (like as if you are letting Php automatically fill out the statement) then its dangerous.</p> <p>If its getting filled in using a binding API, then your ready to go.</p> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316378#316378 1 Answer by Robert Wagner for How is this MySQL query vulnerable to SQL injection? Robert Wagner 2008-11-25T04:35:53Z 2008-11-25T04:35:53Z <p>If it is properly escaped and validated, then you don't have a problem. </p> <p>The problem arises when it is not properly escaped or validated. This could occur by sloppy coding or an oversight.</p> <p>The problem is not with particular instances, but with the pattern. This pattern makes SQL injection possible, while the other pattern makes it impossible.</p> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316379#316379 0 Answer by Toby Hede for How is this MySQL query vulnerable to SQL injection? Toby Hede 2008-11-25T04:36:22Z 2008-11-25T04:42:18Z <p>If <strong>$user_id</strong> is escaped, then you should not be vulnerable to SQL Injection.</p> <p>In this case, I would also ensure that the $user_id is numeric or an integer (depending on the exact type required). <strong>You should always limit the data to the most restrictive type you can.</strong></p> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316405#316405 0 Answer by staticsan for How is this MySQL query vulnerable to SQL injection? staticsan 2008-11-25T05:00:48Z 2008-11-25T05:00:48Z <p>All answers are good and right, but I feel I need to add that the <code>prepare</code>/<code>execute</code> paradigm is not the <em>only</em> solution, either. You <em>should</em> have a database abstraction layer, rather than using the library functions directly and such a layer is a good place to explicitly escape string parameters, whether you let <code>prepare</code> do it, or you do it yourself.</p> http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection/316412#316412 1 Answer by Salamander2007 for How is this MySQL query vulnerable to SQL injection? Salamander2007 2008-11-25T05:09:58Z 2008-11-25T05:09:58Z <p>I think 'Properly Escaped' here is the keyword. In your <a href="http://stackoverflow.com/questions/316142/mysql-multi-table-join">last question</a>, I'm making the assumption that your code is copy pasted from your production code, and since you asked question about three tables join, I also make the assumption that you didn't do proper escaping, hence my remark on SQL Injection attack. </p> <p>To answer your question, as so many people here has described, <strong>IF</strong> the variable has been 'Properly Escaped', then you have no problem. But why trouble yourself by doing that? As some people have pointed out, sometimes Properly Escaping is not a straightforward thing to do. There are patterns and library in PHP that makes SQL Injection impossible, why don't we just use that? (I also deliberately make assumption that your code is in fact PHP). Vinko Vrsalovic <a href="http://stackoverflow.com/questions/316367/how-is-this-mysql-query-vulnerable-to-sql-injection#316372">answer</a> may give you ideas on how to approach this problem.</p>