Hi,
Just looking at:

What does the sql code do:
Robert'); DROP
TABLE STUDENTS; --
I know both ' and -- are for comments, but doesn't the word DROP get commented also since it is part of the same line?
|
6
|
Hi, Just looking at:
What does the sql code do:
I know both ' and -- are for comments, but doesn't the word DROP get commented also since it is part of the same line?
|
|||
|
|
|
|
It drops the students table. The original query in the school's program probably looks something like
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
which, in plain english, roughly translates to the two queries:
and
The ' in the student's name is not a comment, its the string delimeter. Since the student's name is a string, its 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). |
||||||||||||
|
|
|
Lets say the name was used in a variable, $Name. You then run this query:
What you get is:
The -- only comments the remainder of the line. |
||
|
|
|
|
No, ' isn't a comment in SQL, but a delimiter. Mom supposed the database programmer made a request looking like:
(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
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: Select * From Students Where (Name = '') 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! |
||
|
|
|
|
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. |
||
|
|
|
|
' character in SQL is used for string constants. In this case it is used for ending the string constant and not for comment. |
||
|
|
|
|
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. |
|||
|
|
If you listen to the most recent blog.stackoverflow podcast, they actually discuss this. |
||
|
|