vote up 0 vote down star

What is the best function to run my strings through to ensure that MySQL injection is impossible?

Also, will it require running it through another function on the way out to make it display correctly?

See also

Are Parameters really enough to prevent Sql injections?
C# Parameterized Query MySQL with in clause
Can I protect against SQL Injection by escaping single-quote and surrounding user input with single-quotes?

flag
What ORM or access layer are you using? What language are you using? For most ORM's, this is trivially handled for you. If you use the JDBC driver properly, this is trivially handled for you. Please provide the language and components you're using. – S.Lott Apr 3 at 16:33
Function in what language? – E Dominique Apr 3 at 16:34
Duplicate: stackoverflow.com/questions/306668/…, stackoverflow.com/questions/650455/… – S.Lott Apr 3 at 16:36
@S.Lott: I don't think those count as dupes, since they assume the answer to this one. – Jon B Apr 3 at 16:38
Near duplicate: stackoverflow.com/questions/139199/… – S.Lott Apr 3 at 16:38
show 2 more comments

4 Answers

vote up 13 vote down check

Parameterized Queries

link|flag
+1 that's the way to go. Not just because it avoids SQL injection but it also allows RDBMS to do better query execution plan caching. – ssg Apr 3 at 16:38
+1: always works -- makes injection actually impossible. String manipulation only makes it unlikely for all the cases we tested. – S.Lott Apr 3 at 16:43
+1: Mush better than trusting your own implementation to not have any edge cases or special syntax vulnerabilities. This also prevents the need to use HTML entities in the database. (I'm looking at you phpBB!) – John Gietzen Apr 3 at 18:51
vote up 1 vote down

A parameter function.

Humor aside, I mean don't dynamically execute user-entered content as SQL if you can at all avoid it. Pass everything as parameters, and reference them from your query instead. See Chad Birch's answer for a good link explaining this.

link|flag
vote up 0 vote down

As Chad says, always use parameterized queries to avoid SQL injection.

To answer the second half of your question, if your output is to a web page then always escape any special HTML characters (&, <, >) to protect against script injection.

link|flag
vote up 0 vote down

Add to parameterized queries the use of input validation within the application. Never trust that the input is clean. Check it. For instance, if it's supposed to be an integer, check to make sure it converts to a numeric value without issue.

link|flag

Your Answer

Get an OpenID
or

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