up vote 131 down vote favorite
42
share [g+] share [fb]

Just looking at:

XKCD Strip (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?

link|improve this question

60% accept rate
4  
In MySQL, ' 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
feedback

13 Answers

up vote 289 down vote accepted

It drops the students table.

The original query in the school's program probably looks something like

var query = "SELECT * FROM Students WHERE (Name = '" + tbName.Text + "')";

This is the naive way to add user text to a query, and is evil. Since the student's name is "Robert'); DROP TABLE STUDENTS; --" the resulting query (after concatenation) is

SELECT * FROM Students WHERE (Name = 'Robert'); DROP TABLE Students; --')

which, in plain English, roughly translates to the two queries:

Get everything from the Students table where the student's name is Robert.

and

Delete the Students table and ignore everything else I say from this point on ') and any other query-breaking junk.

The ' in the student's name is not a comment, it's the string delimeter. Since the student's name is a string, it's needed to complete the hypothetical query (i.e., Name = ' ). Injection attacks only work when the SQL query they inject results in good SQL (good being very relative in this case).

link|improve this answer
41  
Good explanation, +1. – paxdiablo Dec 1 '08 at 21:58
2  
Mmm, the WHERE with parentheses around the arguments is rather unusual, but at least it avoids a syntax error... :-) – PhiLho Dec 2 '08 at 20:00
14  
Personally, I'd have named my son Robert'; drop table students;--, but then I'm not a cartoonist. – Will Jun 1 '09 at 18:35
2  
An example of someone with this very vulnerability: stackoverflow.com/questions/1608127/… – Will Oct 22 '09 at 17:44
21  
@PhiLho: If the original statement were an INSERT, then the parenthesis would make more sense. It would also explain why the database connection isn't in read-only mode. – dan04 Aug 10 '10 at 4:02
show 7 more comments
feedback

Let's say the name was used in a variable, $Name. You then run this query:

INSERT INTO Students VALUES ( '$Name' )

What you get is:

INSERT INTO Students VALUES ( 'Robert' );  DROP TABLE STUDENTS; --')

The -- only comments the remainder of the line.

link|improve this answer
15  
This is much better then the highest voted, because it explains the closing parenthesis. – Tim Büthe Aug 13 '10 at 12:39
2  
Exactly. It's the most succinct explanation of SQL injection I've seen. – recluze Jun 8 '11 at 11:06
feedback

No, ' isn't a comment in SQL, but a delimiter.

Mom supposed the database programmer made a request looking like:

INSERT INTO 'students' ('first_name', 'last_name') VALUES ('$firstName', '$lastName');

(for example) to add the new student, where the $xxx variable contents was taken directly out of an HTML form, without checking format nor escaping special characters.

So if $firstName contains Robert'); DROP TABLE students; -- the database program will execute directly on the DB the request:

INSERT INTO 'students' ('first_name', 'last_name') VALUES ('Robert'); DROP TABLE students; --', 'XKCD');

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.

link|improve this answer
+1 This explains it better than other answers. – Nyuszika7H Apr 29 '11 at 21:14
feedback

Say you naively wrote a student creation method like this:

void createStudent(String name) {
    database.execute("INSERT INTO students (name) VALUES ('" + name + "')");
}

And someone enters the name Robert'); DROP TABLE STUDENTS; --

What gets run on the database is this query:

INSERT INTO students (name) VALUES ('Robert'); DROP TABLE STUDENTS --')

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.

link|improve this answer
feedback

As everyone else has pointed out already, the '); closes the original statement and then a second statement follows. Most frameworks, including languages like PHP, have default security settings by now that don't allow multiple statements in one SQL string. In PHP, for example, you can only run multiple statements in one SQL string by using the mysqli_multi_query function.

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:

$query="SELECT * FROM users WHERE username='" . $_REQUEST['user'] . "' and (password='".$_REQUEST['pass']."')";
$result=mysql_query($query);

If you provide peter as the username and secret as the password, the resulting SQL string would look like this:

SELECT * FROM users WHERE username='peter' and (password='secret')

Everything's fine. Now imagine you provide this string as the password:

' OR '1'='1

Then the resulting SQL string would be this:

SELECT * FROM users WHERE username='peter' and (password='' OR '1'='1')

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 can.

link|improve this answer
feedback

The ' character in SQL is used for string constants. In this case it is used for ending the string constant and not for comment.

link|improve this answer
feedback

The '); ends the query, it doesn't start a comment. Then it drops the students table and comments the rest of the query that was supposed to be executed.

link|improve this answer
feedback

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:

$sql = "INSERT INTO `Students` (FirstName, LastName) VALUES ('" . $fname . "', '" . $lname . "')";

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.

link|improve this answer
what language is this? – genesis Sep 13 '11 at 21:43
pseudocode, based on php and mysql – Joel Coehoorn Sep 13 '11 at 21:47
+ + isn't working in PHP like in javascript. – genesis Sep 13 '11 at 21:48
feedback

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:

Select *
From Students
Where (Name = '<NameGetsInsertedHere>')

The SQL would become:

Select *
From Students
Where (Name = 'Robert'); DROP TABLE STUDENTS; --')
--             ^-------------------------------^

On some systems, the select would get ran first followed by the drop statement! The message is: DONT EMBED VALUES INTO YOUR SQL. Instead use parameters!

link|improve this answer
feedback

The writer of the database probably did a

sql = "SELECT * FROM STUDENTS WHERE (STUDENT_NAME = '" + student_name + "') AND other stuff";
execute(sql);

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.

link|improve this answer
It was my first thought, but you get a syntax error with the trailing closing parenthesis, no? – PhiLho Dec 1 '08 at 22:03
That's why there is a -- at the end, indicating the remaining text is a comment and should be ignored. – Will Dec 1 '08 at 22:08
feedback

If you listen to the most recent blog.stackoverflow podcast, they actually discuss this.

link|improve this answer
13  
Adding a link to the actual podcast would probably help, because most recent tends to change over time. Frequently. – Robert Koritnik Aug 18 '10 at 11:00
1  
As @Robert Koritnik pointed out, 'recent' is kinda time-dependent ;) - searching for a url, I found blog.stackoverflow.com/2008/11/podcast-31 – Alok Sep 14 '11 at 14:36
feedback

As far as XKCD goes, if there is any question about some of the comics you can always go to Explain XKCD and have your answer figured out.

There is even a XKCD wiki, which is very helpful for some tricky comics like XKCD geohashing

link|improve this answer
feedback

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 foobar with the actual name of the student. A normal insert operation would look like this:

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?

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 DROP TABLE command. The last line of the output confirms that the database server has dropped the table.

The result?

school=> SELECT * FROM students;
ERROR:  relation "students" does not exist
LINE 1: SELECT * FROM students;
                      ^
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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