Can someone explain SQL injection? How does it cause vulnerabilities? Where exactly is the point where SQL is injected?
Duplicate
http://stackoverflow.com/questions/332365/xkcd-sql-injection-please-explain
Too many to list (Google link)
|
|
Can someone explain SQL injection? How does it cause vulnerabilities? Where exactly is the point where SQL is injected? Duplicate
|
||||||||||
|
closed as exact duplicate by Ed Swangren, amdfan, Matt Hamilton, Mitch Wheat, George Stocker Mar 2 at 17:25 |
|
|
Can someone explain SQL injecton? SQL injection happens when you interpolate some content into a SQL query string, and the result modifies the syntax of your query in ways you didn't intend. It doesn't have to be malicious, it can be an accident. But accidental SQL injection is more likely to result in an error than in a vulnerability. The harmful content doesn't have to come from a user, it could be content that your application gets from any source, or even generates itself in code. How does it cause vulnerabilities? It can lead to vulnerabilities because attackers can send values to an application that they know will be interpolated into a SQL string. By being very clever, they can manipulate the result of queries, reading data or even changing data that they shouldn't be allowed to do. Example in PHP:
Now suppose the attacker sets the POST request parameters to "
Although I expected Where exactly is the point where SQL is injected? It isn't SQL that's injected, it's content that's interpolated ("injected") into a SQL string, resulting in a different kind of query than I intended. I trusted the dynamic content without verifying it, and executed the resulting SQL query blindly. That's where the trouble starts. SQL injection is a fault in the application code, not typically in the database or in the database access library or framework. The remedy for SQL injection follows the FIEO practices:
|
|||
|
|
|
|
There are plenty of resources on the web - just google it: http://en.wikipedia.org/wiki/SQL_Injection is a good starting point. |
||
|
|
|
|
|
||
|
|
|
This should fool those pesky licence plate scanners!
|
||
|
|
|
|
I found this paper to be an extremely good read about SQL injection techniques (link is to PDF): Advanced SQL Injection In SQL Server Applications. Despite the title saying "Advanced", it's quite readable even if you don't have much knowledge about SQL injection. |
||
|
|
|
|
Check these articles: |
||
|
|
|
|
To get some general background check out the Wikipedia article on SQL Injection. In short SQL injection attacks can leave you vulnerable to all manor of database data theft and destruction. The exact details of what can be done to your system depend on the details of the system itself. Any time you pass input from your users to your database you have a potential injection point. Web applications are often lacking in the this regard, as new programmers often do not understand the risks of handling input from users, and web applications are attacked by very smart people you never thought would find your program. |
|||
|
|
|
|
SQL Injection occurs when the user of an application is able to affect the meaning of database query. This often occurs when arbitary strings from user input are concatenated to create SQL which is fed to the database. For example lets say we had the following code (in PHP, but the same holds true for any language), which might be used to handle a user login.
The harm is done when the user enters something like
... for the username. Without proper encoding the query becomes:
The issue here is that the ' in the username closes out the username field then the -- starts a SQL comment causing the database server to ignore the rest of the string. The net result is the user can now log in as the administrator without having to know the password. SQL Inection can also be used to execute UPDATE, DELETE or DROP queries and really damage the database. SQL Injection can be prevented by using parameterised queries, or applying your language/toolkit's escaping functions (such as mysql_real_escape_string() in PHP). Once you understand SQL Injection you'll get the joke behind this cartoon. |
||
|
|
|
|
read up on Parameterized Queries |
||
|
|
|
|
The point where SQL is injected is any point that your application accepts input from the user. Whether this becomes a dangerous vulnerability for your web application depends on whether this input is later used as part of an SQL query without properly checking its type and escaping it if necessary. Without proper escaping, some SQL code 'injected' by the user could be executed by the SQL engine as SQL code, rather than a simple string or value. |
||
|
|
|
|
This seems easy to find using a google search. The first 2 results pretty much explain it all I think. |
||
|
|