if yes, why there are still so many successful SQL injections? Just because some developers are too dumb to use parameterized statements? Thanks,
|
|
The links that I have posted in my comments to the question explain the problem very well. I've summarised my feelings on why the problem persists, below:
|
||||
|
|
|
I wouldn't say "dumb". I think the tutorials are the problem. Most SQL tutorials, books, whatever explain SQL with inlined values, not mentioning bind parameters at all. People learning from these tutorials don't have a chance to learn it right. |
|||
|
|
|
To protect your application from SQL injection, perform the following steps: Step 1. Constrain input. Step 2. Use parameters with stored procedures. Step 3. Use parameters with dynamic SQL. Refer to http://msdn.microsoft.com/en-us/library/ff648339.aspx |
|||||
|
|
Because most code isn't written with security in mind, and management, given a choice between adding features (especially something visible that can be sold) and security/stability/reliability (which is a much harder sell) they will almost invariably choose the former. Security is only a concern when it becomes a problem. |
|||
|
|
|
No, paramertized queries won't stop all sql injection - some dynamic queries are composed within stored procedures in the database. As for why we still have sql injection: old (bad) examples, languages and systems that don't support paramertization, and the fact that fixing something that works is a harder sell than new features/bug fixes. |
|||
|
|