Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 32 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"
Note that the very same query being sent to the server, without any data in it!
And then we're sending the data with the second request, totally separated from the query itself:

$db->execute($data);

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

However, it worth to be noted that not every time you're using placeholder, it is processed as a prepared statement.

Placeholder is a general idea for substituting actual data with a variable for the future processing, while prepared statement is the only subset of them.
So, sometimes we actually have to compose query along with data, but if every bit of data is properly formatted according to it's type - nothing wrong could be happen.
So, for example, by default PDO do not use prepared statements but rather compose the regular query. But because it substitutes every placeholder with properly formatted data, nothing bad could happen.

But it you want to tell PDO to do it straight way, to use real prepared statements, you have to set this setting:

$dbh->setAttribute( PDO::ATTR_EMULATE_PREPARES, false );

Please also note that formatting is not to be confused with escaping. Formatting involves a lot more actions than silly escaping. So, do not try manual escaping at home, at least until you get to know every formatting rule for the every distinct query part.

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, so I won't repeat myself.

share|improve this answer
+1 Thanks. Awesome explanation. – techfoobar Jan 22 at 11:26

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.

share|improve this answer

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=?
share|improve this answer
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.

share|improve this answer

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

share|improve this answer

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:

Prepared statements and SQL Injection

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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