If user input is inserted into an SQL query directly, the application becomes vulnerable to SQL injection, like in the following example:

$unsafe_variable = $_POST['user_input'];

mysql_query("INSERT INTO table (column) VALUES ('" . $unsafe_variable . "')");

What should one do to prevent this?

link|improve this question

50% accept rate
feedback

10 Answers

up vote 584 down vote accepted

Use prepared statements and parameterized queries. These are SQL statements that are sent to and parsed by the database server separately from any parameters. This way it is impossible for an attacker to inject malicious SQL.

You basically have two options to achieve this:

  1. Using PDO:

    $stmt = $pdo->prepare('SELECT * FROM employees WHERE name = :name');
    
    $stmt->execute(array(':name' => $name));
    
    foreach ($stmt as $row) {
        // do something with $row
    }
    
  2. Using mysqli:

    $stmt = $dbConnection->prepare('SELECT * FROM employees WHERE name = ?');
    $stmt->bind_param('s', $name);
    
    $stmt->execute();
    
    $result = $stmt->get_result();
    while ($row = $result->fetch_assoc()) {
        // do something with $row
    }
    

PDO

Note that when using MySQL and PDO real prepared statements are not used by default. To fix this you have to disable the emulation of prepared statements. An example of creating a connection using PDO is:

$options = array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION); 
$dbConnection = new PDO('mysql:dbname=dbtest;host=127.0.0.1;charset=utf8', 'user', 'pass', $options);
$dbConnection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);

In the above example the error mode isn't strictly necessary, but it is advised to add it. This way the script will not stop with a fatal error when something goes wrong. And gives the developer the change to catch any errors.

What is mandatory however is the setAttribute() line, which tells PDO to disable emulated prepared statements and use real prepared statements. This makes sure the statement and the values aren't parsed by PHP before sending it the the MySQL server (giving a possible attacker no chance to inject malicious sql).

Although you can set the charset in the options of the constructor it's important to note that 'older' versions of PHP (< 5.3.6) silently ignored the charset parameter in the DSN.

Explanation

What happens is that the SQL statement you pass to prepare is parsed and compiled by the database server. By specifying parameters (either a ? or a named parameter like :name in the example above) you tell the database engine where you want to filter on. Then when you call execute the prepared statement is combined with the parameter values you specify.

The important thing here is that the parameter values are combined with the compiled statement, not a SQL string. SQL injection works by tricking the script into including malicious strings when it creates SQL to send to the database. So by sending the actual SQL separately from the parameters you limit the risk of ending up with something you didn't intend. Any parameters you send when using a prepared statement will just be treated as strings (although the database engine may do some optimization so parameters may end up as numbers too, of course). In the example above, if the $name variable contains 'Sarah'; DELETE * FROM employees the result would simply be a search for the string "'Sarah'; DELETE * FROM employees", and you will not end up with an empty table.

Another benefit with using prepared statements is that if you execute the same statement many times in the same session it will only be parsed and compiled once, giving you some speed gains.

Oh, and since you asked about how to do it for an insert, here's an example (using PDO):

$preparedStatement = $db->prepare('INSERT INTO table (column) VALUES (:column)');

$preparedStatement->execute(array(':column' => $unsafeValue));
link|improve this answer
3  
the link in this document appears to be out of date, I believe the following link will work: php.net/manual/en/book.pdo.php – Dave Nov 1 '09 at 19:19
2  
This make sense, However, PDO is an extension right? meaning it needs to be installed? Is there a way I can check to see if it is installed? Also I am using a shared hosting, so if it is not installed and my hosting provider cannot/will not install it, is there an alternative to using a PDO? Thank You!! – John Isaacks Jan 5 '10 at 21:31
19  
php.net/manual/en/pdo.installation.php PDO is bundled by default since PHP 5.1. Not all drivers for all databases may be installed, but if your host supports MySQL and PHP later than 5.1 it would be very surprising if it didn't have the MySQL PDO driver installed. Create a page with <?php phpinfo(); ?> and view it in a browser, look for PDO and you will see info on which drivers are installed. – Theo Jan 6 '10 at 12:29
2  
The protection comes from using bound parameters, not from using prepared statement (it is just that people tend to switch to using prepared statements at the same time as bound parameters, so the two ideas get conflated). – Quentin Oct 3 '11 at 10:53
1  
It's worth stating here that the benefits of prepared statements (parameterised queries) are available with mysqli as well as PDO. – Caltor Nov 22 '11 at 16:08
show 7 more comments
feedback

You've got two options - Escaping the special characters in your unsafe_variable, or using a parameterized query. Both would protect you from SQL Injection. The parameterized query is considered better practice, but escaping characters in your variable will require fewer changes.

We'll do the simpler string escaping one first.

//connect

$safe_variable = mysql_real_escape_string($_POST["user-input"]);

mysql_query("INSERT INTO table (column) VALUES ('" . $safe_variable . "')");

//disconnect

See also, the details of the mysql_real_escape_string function.

To use the paramterised query, you need to use MySQLi rather than the MySQL functions. To rewrite your example, we would need something like the following.

<?php
$mysqli = new mysqli("server", "username", "password", "database_name");

// TODO - Check that connection was successful.

$unsafe_variable = $_POST["user-input"];

$stmt = $mysqli->prepare("INSERT INTO table (column) VALUES (?)");

// TODO check that $stmt creation succeeded

// s means the database expects a string
$stmt->bind_param("s", $unsafe_variable);

$stmt->execute();

$stmt->close();

$mysqli->close();
?>

The key function you'll want to read up on there would be mysqli::prepare.

Also, as others have suggested, you may find it useful/easier to step up a layer of abstraction with something like PDO.

Please note that the case you asked about is a fairly simple one, and that more complex cases may require more complex approaches. In particular:

  • If you want to alter the structure of the SQL based on user input, parameterised queries are not going to help, and the escaping required is not covered by mysql_real_escape_string. In this kind of case you would be better off passing the user's input through a whitelist to ensure only 'safe' values are allowed through.
  • If you use integers from user input in a condition and take the mysql_real_escape_string approach you will suffer from the problem described by Polynomial in the comments below. This case is trickier because integers would not be surrounded by quotes, so you could deal with by validating that the user input contains only digits.
  • There are likely other cases I'm not aware of. You might find http://webappsec.org/projects/articles/091007.txt a useful resource on some of the more subtle problems you can encounter.
link|improve this answer
4  
I like this much better than the accepted answer! But is mysql_real_escape_string really as safe as parameterization? – Cawas Apr 29 '11 at 14:57
11  
Something is very wrong in PHP land if mysql_real_escape_string doesn't appropriately escape all special characters. That said, it's easier to look at code using parameterization and know that it's correct than code using escaping functions. – Matt Sheppard May 2 '11 at 0:33
1  
I've always used mysql_real_escape_string – Chris L. Aug 25 '11 at 17:00
15  
-1 because concatenation-style query building is always a bad idea. The mysql_real_escape_string function is not a catch-all. It only escapes special characters, so SELECT * FROM users WHERE score = $var is still vulnerable to $var = "1 OR 1 = 1". – Polynomial Dec 5 '11 at 12:25
1  
I can't think of an example where they are, but haven't looked into it deeply. Cedric below pointed out webappsec.org/projects/articles/091007.txt which may provide some useful info. – Matt Sheppard Dec 7 '11 at 2:20
show 9 more comments
feedback

I'd recommend using PDO (PHP Data Objects) to run parameterized SQL queries. Not only does this protect against SQL injection, it also speeds up queries. And by using PDO rather than mysql_, mysqli_, and pgsql_ functions, you make your app a little more abstracted from the database, in the rare occurence that you have to switch database providers.

link|improve this answer
2  
In MySQL, this can actually make performance worse since prepared statements aren't cached and also, the query cache won't be used for prepared statements. This blog post is old, but I believe still up-to-date with respect to caching info mysqlperformanceblog.com/2006/08/02/mysql-prepared-statements – Michael Mior Jul 8 '11 at 17:27
1  
This can be (somewhat) solved via $db->setAttribute(PDO::ATTR_EMULATE_PREPARES, true); to emulate prepared statements client(PHP)-side. – Michael Mior Jul 8 '11 at 17:29
8  
I'm pretty sure that prepared statements are cached since MySQL 5.1.17. – Justin ᚅᚔᚈᚄᚒᚔ Jul 8 '11 at 17:45
feedback

Use PDO and prepared queries.

($conn is a PDO object)

$stmt = $conn->prepare("INSERT INTO tbl VALUES(:id, :name)");
$stmt->bindValue(':id', $id);
$stmt->bindValue(':name', $name);
$stmt->execute();
link|improve this answer
feedback

Whatever you do end up using, make sure that you check your input hasn't already been mangled by magic_quotes or some other well-meaning rubbish, and if necessary, run it through stripslashes or whatever to sanitise it.

link|improve this answer
6  
...or just turn magic quotes off... – Tchalvak Apr 15 '11 at 14:32
3  
Indeed; running with magic_quotes switched on just encourages poor practice. However, sometimes you can't always control the environment to that level - either you don't have access to manage the server, or your application has to coexist with applications that (shudder) depend on such configuration. For these reasons, it's good to write portable applications - though obviously the effort is wasted if you do control the deployment environment, e.g. because it's an in-house application, or only going to be used in your specific environment. – Rob Apr 24 '11 at 17:04
feedback

Every answer here covers only part of the problem.
In fact, there are four different query parts which we can add to it dynamically:

  • a string
  • a number
  • an identifier
  • a syntax keyword.

and prepared statements covers only 2 of them

But sometimes we have to make our query even more dynamic, adding operators or identifiers as well.
So, we will need different protection techniques.

In general, such a protection approach is based on whitelisting. In this case every dynamic parameter should be hardcoded in your script and chosen from that set.
For example, to do dynamic ordering:

$orders  = array("name","price","qty"); //field names
$key     = array_search($_GET['sort'],$orders)); // see if we have such a name
$orderby = $orders[$key]; //if not, first one will be set automatically. smart enuf :)
$query   = "SELECT * FROM `table` ORDER BY $orderby"; //value is safe

However, there is another way to secure identifiers - escaping. As long as you have an identifier quoted, you can escape backticks inside by doubling them.

As a further step we can borrow a truly brilliant idea of using some placeholder (a proxy to represent the actual value in the query) from the prepared statements and invent a placeholder of another type - an identifier placeholder.

So, to make long story short: it's a placeholder, not prepared statement can be considered as a silver bullet.

So, a general recommendation may be phrased as
As long as you are adding dynamic parts to the query using placeholders (and these placeholders properly processed of course), you can be sure that your query is safe.

Still there is an issue with SQL syntax keywords (such as AND, DESC and such) but whitelisting seems the only approach in this case.

link|improve this answer
well said. Thanks for a precise explanation – Carrie Kendall Mar 20 at 20:47
feedback

Injection Prevention - mysql_real_escape_string()

PHP has a specially-made function to prevent these attacks. All you need to do is use the mouthful of a function mysql_real_escape_string.

What mysql_real_escape_string does is take a string that is going to be used in a MySQL query and return the same string with all SQL Injection attempts safely escaped. Basically, it will replace those troublesome quotes(') a user might enter with a MySQL-safe substitute, an escaped quote \'.

/NOTE: you must be connected to the database to use this function! // connect to MySQL

$name_bad = "' OR 1'"; 

$name_bad = mysql_real_escape_string($name_bad);

$query_bad = "SELECT * FROM customers WHERE username = '$name_bad'";
echo "Escaped Bad Injection: <br />" . $query_bad . "<br />";


$name_evil = "'; DELETE FROM customers WHERE 1 or username = '"; 

$name_evil = mysql_real_escape_string($name_evil);

$query_evil = "SELECT * FROM customers WHERE username = '$name_evil'";
echo "Escaped Evil Injection: <br />" . $query_evil;

you can find more detail here

http://www.tizag.com/mysqlTutorial/mysql-php-sql-injection.php

link|improve this answer
feedback

Parameterized query AND input validation is the way to go. There is many scenarios under which SQL injection may occur, even though mysql_real_escape_string() has been used.

Those examples are vulnerable to SQL injection :

$offset = isset($_GET['o']) ? $_GET['o'] : 0;
$offset = mysql_real_escape_string($offset);
RunQuery("SELECT userid, username FROM sql_injection_test LIMIT $offset, 10");

or

$order = isset($_GET['o']) ? $_GET['o'] : 'userid';
$order = mysql_real_escape_string($order);
RunQuery("SELECT userid, username FROM sql_injection_test ORDER BY `$order`");

In both case you can't use ' to protect the encapsulation.

source : The Unexpected SQL Injection (When Escaping Is Not Enough)

link|improve this answer
feedback

you could do something basic like this.

   $safe_variable = mysql_real_escape_string($_POST["user-input"]);
   mysql_query("INSERT INTO table (column) VALUES ('" . $safe_variable . "')");

this won't solve every problem but its a very good stepping stone. i left out obvious items such as checking the variable's existance, format (numbers, letters, etc)

link|improve this answer
I have tried your example and it's work fine for me.Could you clear "this won't solve every problem" – Chinook Apr 22 at 20:31
feedback

I favor stored procedures (mySQL has sp support since 5.0) from a security point of view - the advantages are -

  1. Most databases (including mySQL) enable user access to be restricted to executing stored procedures. The fine grained security access control is useful to prevent escalation of privileges attacks. This prevents compromised applications from being able to run SQL directly against the database.
  2. They abstract the raw SQL query from the application so less information of the db structure is available to the application. This makes it harder or people to understand the underlying structure of the database and design suitable attacks.
  3. They accept only parameters so the advantages of parameterized queries are there. of course - IMO you still need to sanitize your input - especially if you are using dynamic SQL inside the stored procedure.

The disadvantages are -

  1. They (stored procedures) are tough to maintain and tend to multiply very quickly. This makes managing them an issue.
  2. They are not very suitable for dynamic queries - if they are built to accept dynamic code as parameters then a lot of the advantages are negated.
link|improve this answer
I have noticed a lot of down-votes to this answer but no comments or any reasons as to why. I would appreciate the courtesy of letting me know why you think this answer deserves a down-vote so i have an opportunity to respond. – Nikhil Mar 2 '11 at 9:16
4  
I haven't downvoted, but stored procedures are generally frowned upon, because you put business logic, which belongs into your PHP scripts, into the database, making maintainance a nightmare. – NikiC Apr 10 '11 at 8:58
1  
@Nikhil: Stored procedures themselves do little to protect against SQL injection. Unless you use parametrized queries to run the stored procedure, an attacker can still inject malicious SQL into a query. The only real benefit that you've cited is that it hides the database structure, but that doesn't mean that attacks are very much more difficult. The rest of the benefits you claim are just so much nonsense. – greyfade Apr 20 '11 at 17:07
1  
@nikic - Yes, using stored procedures may encourage people to put business logic in them when it is not appropriate. But IMO that is a code smell which should be caught in your code review. – Nikhil Apr 25 '11 at 5:54
1  
Sanitizing the input is of of the points I made in my answer - point three. In this point I mention that sps are not suitable for dynamic queries and this is one of the reasons why. Assuming for a moment one is able to compromise a stored procedure using SQL injection (becuase the sql injection happened through a string parameter and was then used in the query). In this case the limited access privileges of the stored procedure (assuming you have set it up correctly) will limit the damage to the parts of the database the sp has access to. – Nikhil Apr 25 '11 at 6:39
show 11 more comments
feedback

Your Answer

 
or
required, but never shown

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