I've provided a solution for Python... please flesh this out with examples for other languages.
|
20
|
|||||||
|
|
|
Oracle has got an extensive tutorial on that topic |
||
|
|
|
|
Since no-one has mentioned classic ASP yet, I'll jump in with what I have learnt over the past year (during which we've been hacked 4 times - until I dealt with things). We use Microsoft SQL Server. First of all, DONT USE INLINE SQL. If you use only stored procedures (with NO dynamic SQL in them) you are a million times safer (it's faster too). Procs can only be passed data via parameters, which means all the hacker tricks with hyphens and apostrophes do not work. If you have no choice but to use inline SQL (like me you have been brought in to work on an old site with 1000 pages all using it) then you need to be very careful! Make sure that when you build a SQL string, you wrap every number with The most useful thing I did to protect the old site I work on, is to check the Here's how I call that function:
Finally, whether you are using ASP or ASP.NET or anything, you should make sure your database is as safe as possible too: split up databases rather than lump all tables into one, use seperate logins for each website, and DENY access to everything you can, only using GRANT on the tables or procs that a login really needs. Don't forget to DENY access to the system tables and procs too. |
|||
|
|
|
|
The only way to COMPLETELY prevent SQL injection is to either: a) Not use a database backend (hope you like flat files or pure HTML) or b) Not accept ANY user input or any data from the client side (this includes things like form data). In other words, the only way to completely prevent it is to make your application completely unusable. It's like sex: the only 100% sure way to prevent pregnancy is to not have it (and be careful that your toilet seat lids are clean). Once you've accepted that you will never be 100% safe, sanitize your inputs and follow the advice of all the other wonderful commenters. But remember: new attacks appear with alarming frequency. You are never safe. Constant vigilance is the cost of freedom. |
|||
|
|
|
|
another important thing no one has mentioned yet:
this way, even if there is some flaw somewhere, you limit its effect. |
||
|
|
|
|
In Ruby on Rails (ActiveRecord):
or, if you have to build your own SQL statement (which you should avoid if possible):
|
||
|
|
|
|
In Delphi, to use a prepared statement do something like this:
In addition to avoiding SQL injection, one of the benefits to using parametised queries is that it avoids problems with regional number, date and time formatting in your queries. |
|||
|
|
|
|
|
||
|
|
|
|
In ColdFusion there is a tag (function) called cfqueryparam that should be used whenever writing inline queries... Usage: <cfquery datasource="#application.dsn#" name="qryTest" maxrows="#intRows#"> SELECT FirstName, LastName, Phone FROM tblUser WHERE Status = <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#form.status#"> </cfquery> Naturally you can also call paramatised stored procedures using the cfstoredproc and cfprocparam tags... |
|||
|
|
|
|
Always, always, always parameterise any user input. Don't assume sprocs are automatically safe - they can be just as prone. |
|||
|
|
|
|
Use a database API (like SQLObject, SQLAchemy in python, ActiveRecord in Ruby/Rails and the likes) and check the documentation on their recommended way of adding data into queries. Don't do things like Don't ever try to do SQL-injection prevention yourself (using a regex or similar) - validate the data obviously, but don't try to write your own function to neuter strings before putting them in a query.. |
||
|
|
|
|
if your DB allows them, stored procedures can help reduce the risk of sql injection. |
||
|
|
|
It's worth noting in light of a wide spread SQL Injection attempts that disallowing your webapp's db user account from querying the system tables (in MS SQL Server it's sysobjects and syscolumns) is a good idea. It's so little effort and makes a lot of sense. Alternatively if you could set everything to be read only, do so. |
||
|
|
|
|
Maybe not in all cases. Ilia Alshanetsky is perhaps the world's foremost authority on PHP security and he points out that
I think in view of this that prepared statements are perhaps the only best practice way to prevent sql injection attacks in PHP. But Ilia points out that there are caveats even here:
I strongly recommend buying his book phpArchitect's Guide to PHP Security; it's to be preferred over Shiflett's Essential PHP Security in my opinion. It's also important to validate data before using it in the query; ensure that variables are initialised before use, that integers are cast as such before use, and ideally check their range to ensure they're not out of bounds. For example, this is how we would initialise and cast integer input:
|
|||
|
|
|
|
Edit my post (see footnote). Some of us are maintaining sites built in 1999. If you find an SQL injection vulnerability in ASP 3.0, maybe this will help. Don't do this:
Here, gblSQLSafe() doubles up single quotes in the string. Instead do something like this:
That said, if you have 50 legacy sites with no time to actually change all the darned code on all of them, try something like UrlScan for iis6 and 7; dotDefender for pay which also covers Apache or IIS 5-7 or SQL Injection sanitation ISAPI for IIS6. Please note that my ASP 3 is rusty and this code threw an error on my db about a variable (filename) not being assigned. I'm actually testing how stackoverflow might allow someone to correct an erroneous response or improve on it. So if no one fixes or supersedes this, I'll probably delete it soon enough. |
|||
|
|
|
|
As others have said, parametrized or prepared queries are the answer. Here is how you do it in PHP/Postgres:
The explicit type casting is recommended. Since the SQL is parsed separately from the data, SQL injection is impossible. |
|||
|
|
|
|
In mysql and php I use mysql_real_escape_string to protect agains injection. I assume this is sufficient |
||
|
|
|
Never trust user input, never trust client input at all, client side sanitation efforts are worthless, it doesn't take much sophistication to access your web app directly. Always perform sanitation server-side, don't even bother with client-side sanitation, it's a waste of effort. There are a couple techniques that are useful for avoiding SQL injection attacks, I'll go from least favored to most favored.
Here's an example in C# (Java and Python have similar functionalities, see some of the other answers):
|
||||
|
|
|
The venerable Joel Spolsky wrote an interesting article around this sort of thing. If you haven't read it yet, take a look at Making wrong code look wrong. Of course the better method would be to always use parameterized queries or other built-in language features if possible. |
||
|
|
|
|
In PHP, best practice is to use MySQLi (Tutorial) or PDO bound parameters in prepared statements. addslashes() is no longer recommended as it is is too easy to defeat. I personally prefer PDO because it supports named parameters: all those ? placeholders in mysqli are icky and make the query hard to read |
||
|
|
|
|
A general rule for avoiding any kind of injection is "DON'T TRUST USER INPUT!" As for Java, use JDBC's PreparedStatements. Here's a small example: |
||
|
|
|
|
If you're using .NET, there's a pretty comprehensive article on avoiding SQL Injection on MSDN: http://msdn.microsoft.com/en-us/library/ms161953(loband).aspx But, just like Wargames, the best way to win the SQL Injection game is not to play. Don't use SQL strings - use an OR/M tool like LINQ to SQL, SubSonic, NHibernate, etc. Any popular OR/M (like those I mentioned) uses parameterized queries and other safeguards to prevent SQL Injection. |
||
|
|
|
|
Languages often have functions to escape the string, such as php with functions like mysql_escape_string as such:
Other languages and frameworks provide a mechanism similar to the one you mentioned. In Java, you can use a PreparedStatement as such: |
||
|
|
|
Here's an article on Avoiding SQL Injection from C# Online.NET An interesting approach - Using Base64 to avoid SQL injection attacks |
||
|
|
|
|
Using the Python DB API, don't do this:
instead, do this:
|
|||
|
|
