vote up 1 vote down star

I know that PreparedStatements avoid/prevent SQL Injection. How does it do that? Will the final form query that is constructed using PreparedStatements will be a string or otherwise?

flag

1  
Technically the JDBC spec does not insist that there are no SQL injection flaws. I don't know of any drives that are affected. – Tom Hawtin - tackline Oct 17 at 15:48

4 Answers

vote up 4 vote down check

The problem with SQL injection is, that a user input is used as part of the SQL statement. By using prepared statements you can force the user input to be handled as the content of a parameter (and not as a part of the SQL command).

But if you don't use the user input as a parameter for your prepared statement but instead build your SQL command by joining strings together, you are still vulnerable to SQL injections even when using prepared statements.

link|flag
"Prepared Statements" are the Java mechanism for parameters, reference: java.sun.com/j2se/1.4.2/… – Nick Craver Oct 17 at 13:24
Sure, but you can still hardcode some or all of your parameters. – tangens Oct 17 at 17:56
vote up 1 vote down

The SQL used in a PreparedStatement is precompiled on the driver. From that point on, the parameters are sent to the driver as literal values and not executable portions of SQL; thus no SQL can be injected using a parameter. Another beneficial side effect of PreparedStatements (precompilation + sending only parameters) is improved performance when running the statement multiple times even with different values for the parameters (assuming that the driver supports PreparedStatements) as the driver does not have to perform SQL parsing and compilation each time the parameters change.

link|flag
It doesn't have to be implemented like that, and I believe it often isn't. – Tom Hawtin - tackline Oct 17 at 15:46
vote up 1 vote down

I guess it will be a string. But the input parameters will be sent to the database & appropriate cast/conversions will be applied prior to creating an actual SQL statement.

To give you an example, it might try and see if the CAST/Conversion works.
If it works, it could create a final statement out of it.

   SELECT * From MyTable WHERE param = CAST('10; DROP TABLE Other' AS varchar(30))

Try an example with a SQL statement accepting a numeric parameter.
Now, try passing a string variable (with numeric content that is acceptable as numeric parameter). Does it raise any error?

Now, try passing a string variable (with content that is not acceptable as numeric parameter). See what happens?

link|flag
vote up 4 vote down

Consider two ways of doing the same thing:

Statement stmt = conn.createStatement("INSERT INTO students VALUES('" + user + "')");
stmt.execute();

Or

Statement stmt = conn.prepareStatement("INSERT INTO student VALUES(?)");
stmt.setString(1, user);
stmt.execute();

If "user" came from user input and the user input was

Robert'); DROP TABLE students; --

Then in the first instance, you'd be hosed. In the second, you'd be safe and Little Bobby Tables would be registered for your school.

link|flag
So, if I got it right, the query in the second example which will be executed would actually be: INSERT INTO student VALUES("Robert'); DROP TABLE students; --") - or at least something like that. Is this true? – Max Oct 17 at 13:35
No, in the FIRST instance, you'd get that statement. In the second one, it would insert "Robert'); DROP TABLE students;--" into the user table. – Paul Tomblin Oct 17 at 13:38
Thats what I meant, in the second example (the "safe" one), the string Robert'); DROP TABLE students; -- will be saved into the field in the student table. Did I write something else? ;) – Max Oct 17 at 13:49
Sorry, nesting quotes is something I try to avoid because of confusion like this. That's why I like PreparedStatements with parameters. – Paul Tomblin Oct 17 at 14:17
Sorry for any confusion and thank you for the explanation! :) – Max Oct 17 at 14:29

Your Answer

Get an OpenID
or

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