How prepared statements can protect from SQL injection attacks?

Wikipedia says:

Prepared statements are resilient against SQL injection, because parameter values, which are transmitted later using a different protocol, need not be correctly escaped. If the original statement template is not derived from external input, SQL injection cannot occur.

But I can not see the reasons well, can any one kindly give a simple explanation with easy english (english is not my native lang) and some examples?

link|improve this question

feedback

7 Answers

up vote 7 down vote accepted

The idea is very simple - the query and the data are sent to the SQL server separately.
That's all.

The root of the SQL injection problem is mixing of the code and the data.
In fact, our SQL query being a program. A full legitimate program. And we are creating this program dynamically, adding some data on the fly. Thus, this data may interfere with program code and even alter it, as every injection example shows it:

$expected_data = 1;
$query         = "SELECT * FROM users where id=$expected_data";

will produce a regular query

SELECT * FROM users where id=1

while this code

$spoiled_data = "1; DROP TABLE users;"
$query        = "SELECT * FROM users where id=$spoiled_data";

will produce malicious sequence

SELECT * FROM users where id=1; DROP TABLE users;

It works because we are adding data directly to the program body
and it become a part of the program.
so, the data may alter the program.
and, depends on the data passed, we will have either regular output or have table users deleted.

While in case of prepared statements we don't alter our program, it remains intact
That's the point.

We are sending program to the server first

$db->prepare("SELECT * FROM users where id=?");

where the data is substituted by some variable called "placeholder"
and then we're sending the data separately:

$db->execute($data);

so, it can't alter our program and do any harm.
Quite simple - isn't it?

The only thing I have to add, always omitted in the every manual:

Prepared statements can protect only data, but can't defend the program itself.
So, once we have to add, say, a dynamical identifier - a field name, for example, prepared statements can't help us. I've explained the matter recently here, http://stackoverflow.com/q/8255054/285587 So, I won't repeat myself.

link|improve this answer
feedback

The key phrase is need not be correctly escaped. That means that you don't to worry about people trying to throw in dashes, apostrophes, quotes, etc...

It is all handled for you.

link|improve this answer
feedback
ResultSet rs = statement.executeQuery("select * from foo where value = " + httpRequest.getParameter("filter");

lets assume you have that in a Servlet you right. If a malevolent person passed a bad value for 'filter' you might hack your database.

link|improve this answer
feedback

Here is sql for setting up an example:

CREATE TABLE employee(name varchar, paymentType varchar, amount bigint);

INSERT INTO employee VALUES('aaron', 'salary', 100);
INSERT INTO employee VALUES('aaron', 'bonus', 50);
INSERT INTO employee VALUES('bob', 'salary', 50);
INSERT INTO employee VALUES('bob', 'bonus', 0);

The Inject class is vulnerable to sql injection. The query is dynamically pasted together with user input. The intent of the query was to show information about bob. Either salary or bonus, based on user input. But the malicious user manipulates the input corrupting the query by tacking on the equivalent of an 'or true' to the where clause so that everything is returned, including the information about aaron which was supposed to be hidden.

import java.sql.*;

public class Inject {

    public static void main(String[] args) throws SQLException {

        String url = "jdbc:postgresql://localhost/postgres?user=user&password=pwd";
        Connection conn = DriverManager.getConnection(url);

        Statement stmt = conn.createStatement();
        String sql = "SELECT paymentType, amount FROM employee WHERE name = 'bob' AND paymentType='" + args[0] + "'";
        System.out.println(sql);
        ResultSet rs = stmt.executeQuery(sql);

        while (rs.next()) {
            System.out.println(rs.getString("paymentType") + " " + rs.getLong("amount"));
        }

    }

}

Running this, the first case is with normal usage, the second with the malicious injection:

c:\temp>java Inject salary
SELECT paymentType, amount FROM employee WHERE name = 'bob' AND paymentType='salary'
salary 50

c:\temp>java Inject "salary' OR 'a'!='b"
SELECT paymentType, amount FROM employee WHERE name = 'bob' AND paymentType='salary' OR 'a'!='b'
salary 100
bonus 50
salary 50
bonus 0

You should not build your sql statements with string concatenation of user input. Not only is it vulnerable to injection, but it has caching implications on the server as well (the statement changes, so less likely to get a sql statement cache hit whereas the bind example is always running the same statement).

Here is an example of Binding to avoid this kind of injection:

import java.sql.*;

public class Bind {

    public static void main(String[] args) throws SQLException {

        String url = "jdbc:postgresql://localhost/postgres?user=postgres&password=postgres";
        Connection conn = DriverManager.getConnection(url);

        String sql = "SELECT paymentType, amount FROM employee WHERE name = 'bob' AND paymentType=?";
        System.out.println(sql);

        PreparedStatement stmt = conn.prepareStatement(sql);
        stmt.setString(1, args[0]);

        ResultSet rs = stmt.executeQuery();

        while (rs.next()) {
            System.out.println(rs.getString("paymentType") + " " + rs.getLong("amount"));
        }

    }

}

Running this with the same input as the previous example shows the malicious code does not work because there is no paymentType matching that string:

c:\temp>java Bind salary
SELECT paymentType, amount FROM employee WHERE name = 'bob' AND paymentType=?
salary 50

c:\temp>java Bind "salary' OR 'a'!='b"
SELECT paymentType, amount FROM employee WHERE name = 'bob' AND paymentType=?
link|improve this answer
feedback

In SQL SERVER using a prepared statement is definetly injection proof because the input parameters dont form the query. It means that the executed query is not a dynamic query. Example of a sql injection vulnerable statement.

string sqlquery = "select * from table where username='" + inputusername +"' and password='" + pass + "'";

now if the value in inoutusername variable is something like a' or 1=1 -- , this query now becomes.

select * from table where username='a' or 1=1 -- and password=asda

and the rest is commented after -- so it never gets executed and bypassed. using prepared statement example as below

Sqlcommand command = new sqlcommand("select * from table where username = @userinput and password=@pass");
command.Parameters.Add(new SqlParameter("@userinput", 100));
command.Parameters.Add(new SqlParameter("@pass", 100));
command.prepare();

So in effect you cannot send anyother parameter in thus avoiding sql injection..

link|improve this answer
feedback

Basically, with prepared statements the data coming in from a potential hacker is treated as data - and there's no way it can be intermixed with your application SQL and/or be interpreted as SQL (which can happen when data passed in is placed directly into your application SQL).

This is because prepared statements "prepare" the SQL query first to find an efficient query plan, and send the actual values that presumably come in from a form later - at that time the query is actually executed.

More great info here:

Edit: I smell a self-promotion here. Link removed.

link|improve this answer
feedback

its all depends on your application

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.