Just looking at:
(Source: http://xkcd.com/327/)
What does this SQL do:
Robert'); DROP
TABLE STUDENTS; --
I know both ' and -- are for comments, but doesn't the word DROP get commented as well since it is part of the same line?
|
Just looking at:
What does this SQL do:
I know both |
||||
| show 4 more comments |
|
It drops the students table. The original code in the school's program probably looks something like
This is the naive way to add text input into a query, and is very bad, as you will see. After the values for tbName.Text (which is
which, in plain English, roughly translates to the two queries:
and
Everything past the second query is marked as a comment: The Edited as per dan04's astute comment |
|||||||||||||||
|
|
Let's say the name was used in a variable,
What you get is:
The |
||||
|
As everyone else has pointed out already, the You can, however, manipulate an existing SQL statement via SQL injection without having to add a second statement. Let's say you have a login system which checks a username and a password with this simple select:
If you provide
Everything's fine. Now imagine you provide this string as the password:
Then the resulting SQL string would be this:
That would enable you to log in to any account without knowing the password. So you don't need to be able to use two statements in order to use SQL injection, although you can do more destructive things if you are able to supply multiple statements. |
||||
|
|
|
No, Mom supposed the database programmer made a request looking like:
(for example) to add the new student, where the So if
ie. it will terminate early the insert statement, execute whatever malicious code the cracker wants, then comment out whatever remainder of code there might be. Mmm, I am too slow, I see already 8 answers before mine in the orange band... :-) A popular topic, it seems. |
||||
|
|
|
Say you naively wrote a student creation method like this:
And someone enters the name What gets run on the database is this query:
The semicolon ends the insert command and starts another; the -- comments out the rest of the line. The DROP TABLE command is executed... This is why bind parameters are a good thing. |
|||
|
|
|
A single quote is the start and end of a string. A semicolon is the end of a statement. So if they were doing a select like this:
The SQL would become:
On some systems, the |
||||
|
|
TL;DR
-- The application accepts input, in this case 'Nancy', without attempting to
-- sanitize the input, such as by escaping special characters
school=> INSERT INTO students VALUES ('Nancy');
INSERT 0 1
-- SQL injection occurs when input into a database command is manipulated to
-- cause the database server to execute arbitrary SQL
school=> INSERT INTO students VALUES ('Robert'); DROP TABLE students; --');
INSERT 0 1
DROP TABLE
-- The student records are now gone - it could have been even worse!
school=> SELECT * FROM students;
ERROR: relation "students" does not exist
LINE 1: SELECT * FROM students;
^
This drops the student table. To make it clear what's happening, let's try this with a simple table containing only the name field and add a single row (tested with PostgreSQL 9.1.2):
school=> CREATE TABLE students (name TEXT PRIMARY KEY);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "students_pkey" for table "students"
CREATE TABLE
school=> INSERT INTO students VALUES ('John');
INSERT 0 1
Let's assume the application uses the following SQL to insert data into the table:
INSERT INTO students VALUES ('foobar');
Replace
-- Input: Nancy
school=> INSERT INTO students VALUES ('Nancy');
INSERT 0 1
When we query the table, we get this: school=> SELECT * FROM students; name ------- John Nancy (2 rows) What happens when we insert Little Bobby Tables's name into the table?
-- Input: Robert'); DROP TABLE students; --
school=> INSERT INTO students VALUES ('Robert'); DROP TABLE students; --');
INSERT 0 1
DROP TABLE
The SQL injection here is the result of the name of the student terminating the statement and including a separate It's important to notice that during the The result?
school=> SELECT * FROM students;
ERROR: relation "students" does not exist
LINE 1: SELECT * FROM students;
^
SQL injection is the database equivalent of a remote arbitrary code execution vulnerability in an operating system or application. The potential impact of a successful SQL injection attack cannot be underestimated--depending on the database system and application configuration, it can be used by an attacker to cause data loss (as in this case), gain unauthorized access to data, or even execute arbitrary code on the host machine itself. As noted by the XKCD comic, one way of protecting against SQL injection attacks is to sanitize database inputs, such as by escaping special characters, so that they cannot modify the underlying SQL command and therefore cannot cause execution of arbitrary SQL code. If you use parameterized queries, such as by using |
||||
|
|
|
The |
||||
|
|
|
The |
||||
|
|
|
In this case, ' is not a comment character. It's used to delimit string literals. The comic artist is banking on the idea that the school in question has dynamic sql somewhere that looks something like this:
So now the ' character ends the string literal before the programmer was expecting it. Combined with the ; character to end the statement, an attacker can now add whatever sql they want. The -- comment at the end is to make sure any remaining sql in the original statement does not prevent the query from compiling on the server. |
|||||||
|
|
|
The writer of the database probably did a
If student_name is the one given, that does the selection with the name "Robert" and then drops the table. The "-- " part changes the rest of the given query into a comment. |
||||
'is not for comments. Even if it were, there is no space before it so it can only end the string that precedes it. – Lightness Races in Orbit Sep 1 '11 at 12:14