up vote 343 down vote favorite
249
share [g+] share [fb]

So specifically in a mysql database. Take the following code and tell me what to do.

// connect to the mysql database

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

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

// disconnect from the mysql database
link|improve this question

50% accept rate
51  
This is a good question. – Jeff Davis Jan 13 '10 at 15:09
feedback

18 Answers

up vote 395 down vote accepted

Use prepared statements and parameterized queries. These are SQL statements that sent to and parsed by the database server separately from any parameters.

If you use PDO you can work with prepared statements like this:

$preparedStatement = $db->prepare('SELECT * FROM employees WHERE name = :name');

$preparedStatement->execute(array(':name' => $name));

$rows = $preparedStatement->fetchAll();

where $db is a PDO object, see the PDO documentation. The mysqli class also provides parameterized queries.

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:

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

$preparedStatement->execute(array(':column' => $unsafeValue));
link|improve this answer
3  
great resource, thanks! – Andrew G. Johnson Nov 3 '08 at 19:44
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
12  
RTFM: 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
1  
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
show 8 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

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

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

//disconnect

See also, the details of the mysql_real_escape_string function.

Please note that you will need to be careful applying this in general where the user input might contain malicious values which do not contain special characters, as in the example Polynomial provided in the comments below.

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"

To deal with a case like that, you would be best to confirm that the input contains nothing but digits. Because strings need to be surrounded in quotes they may be less subject to that kind of problem.

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.

link|improve this answer
3  
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
I've always used mysql_real_escape_string – Chris L. Aug 25 '11 at 17:00
1  
-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
Your example raises a good point - I've incorporated it into the answer above. Presumably that's not an issue for string values where the string must be quoted (and quotes are special characters). And yes, always use parameterised queries kids... – Matt Sheppard Dec 6 '11 at 6:08
show 2 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
1  
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
5  
I'm pretty sure that prepared statements are cached since MySQL 5.1.17. – Justin ᚅᚔᚈᚄᚒᚔ Jul 8 '11 at 17:45
feedback

Always use parameterized queries. Always. There is no way to get the bad guy's code into your SQL if you don't put it into the source code of the query.

It may take some learning, but it is the only way to go.

link|improve this answer
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

Parametrized sql (check your sql provider) plus htmlentities

link|improve this answer
28  
htmlentities won't protect you against SQL Injection, XSS yes, but not htmlentities. – Allain Lalonde Sep 15 '08 at 2:17
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
5  
...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

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

Anyone suggesting anything besides prepared statements or parametrized queries deserves a downvote:

Parametrized queries in mySQL:

http://us.php.net/manual/en/mysqli.prepare.php

link|improve this answer
11  
Anybody recommending using libraries where the function names begin with the databqse name should also get a downvote. – Kibbee Sep 13 '08 at 1:23
Hey, I don't program in PHP, so don't judge me for their crappy mySQL integration. – FlySwat Sep 13 '08 at 1:29
You are also making the strong assumption that they are able to use paramterised queries. I know a couple of systems that have mutli-database interface which strongly limits the types of things you can do. – kaybenleroll Sep 13 '08 at 9:39
That is only a part of the answer. Url scrubbing, security audits, and common sense are all parts of the solution. You have to apply them all, and with the knowledge that anything less is a false sense of security. – joseph.ferris Dec 10 '08 at 20:56
2  
Can you elaborate why ANY other suggestion should be down voted? – Nikhil Dec 22 '09 at 16:11
show 2 more comments
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

interger

$num = (int)$num;

character

$str = htmlspecialchars($str, ENT_QUOTES, 'UTF-8'); // escape 5 chars ' " < > &
if (!get_magic_quotes_gpc()) {
    $str = addslashes($str); // escape 4 chars ' '' \ \0
}
if ($type == 'sql') {
    $arr = array('_' => "\_", '%' => "\%");
    $str = strtr($str, $arr);
}
link|improve this answer
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
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
1  
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
@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
@greyfade Your argument is not clear to me - it looks like you are saying that somehow malicous SQL can be injected into SP through its parameters and once it does it can harm the database. First of all if you are using SP parameters that are properly typed malicous injection will be limited to only those parameters that accept strings. If you pass a piece of text to a sp parameter of type integer the DB will not execute it. This particular problem is valid for parameterized queries as well if you do not sanitize the string that you assign to the parameters. – Nikhil Apr 25 '11 at 6:39
show 11 more comments
feedback

I use a combination of sprintf and mysql_real_escape_string functions...

For example, if I want to select a row using its id value:

$query = "SELECT `name` FROM `names` WHERE `id` = %u";
$query = sprintf($query, $id_val);

that way I make sure only positive integers get through the query...

And when I want to insert a string into the query I use "%s" instead of "%u" (you can find more about it on the PHP documentation I linked above) with a combination of mysql_real_escape_string.

Although I'm sure it's not 100% safe, there is always a way to bypass checks... One thing that comes to mind is maybe using hex values?

link|improve this answer
1  
-1. using sprintf() is not much different from just doing ordinary string concatenation. It won't protect against injection attacks by itself. Even mysql_real_escape_string is generally frowned upon when parametric queries are available, since the latter is type safe and protects against all types of SQL injection attacks. – greyfade Apr 20 '11 at 17:13
feedback

I would say something like this in addition to mysql_real_escape_string():

<?php
// Quote variable to make safe
function quote_smart($value)
{
    // Stripslashes
    if (get_magic_quotes_gpc()) {
        $value = stripslashes($value);
    }
    // Quote if not integer
    if (!is_numeric($value)) {
        $value = "'" . mysql_real_escape_string($value) . "'";
    }
    return $value;
}
?>
link|improve this answer
1  
You should stripslashes on all get, post variables at the beginning of your script. Not just when it comes to mysql ;) – NikiC Apr 10 '11 at 8:56
feedback
// connect to the mysql database

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

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

// disconnect from the mysql database
link|improve this answer
feedback

You dont need to use the big prepare/execute stuff of PDO, I am using every where the code of Wordpress used for its DB: (Not sure its exactly this one...)

public function query($sql)
{
    if (!(func_num_args() == 1 && is_string($sql))) {
        $args = func_get_args();
        $sql = array_shift($args);
        $sql = str_replace("'%s'", '%s', $sql); // in case someone mistakenly already singlequoted it
        $sql = str_replace('"%s"', '%s', $sql); // doublequote unquoting
        array_walk($args, array(&$this, 'escape'));
        $sql = vsprintf($sql, $args);
    }
    echo "SQL: $sql";
    $result = DB::query($sql);
    return $result;
}

protected function escape(&$value)
{
    if ($value === null) { 
        $value = 'NULL'; 
    } 
    else if (is_bool($value)) { 
        $value = $value ? 1 : 0; 
    }
    /*else if (is_date($values)) {
        return strtotime($values);
    }*/
    else if ($value === "NOW()") {
        return "NOW()";
    }
    else if (!is_numeric($value)) { 
        $value = mysql_real_escape_string($value); 
    }
    return $value; 
}       
link|improve this answer
12  
this is a terrible one – Col. Shrapnel Apr 5 '10 at 6:10
Could you elaborate Col? I am using a very similar approach, though with cleaner api (imho) and I honestly don't see anything bad in it. This method is way more handy than prepared statements. It converts some code block with five lines to one single line which increases readability. Furthermore this effectively prevents you from saying "ah, this value is secure, I can insert it directly and save me the prepared statement", because it is so easy though effective to escape something. So, now please tell my why using a long code is better than using a short one? – NikiC Aug 31 '10 at 20:00
7  
@nikic it's about escape part. All these conditions are useless, and simple $value = mysql_real_escape_string($value); may replace them all. Save for ridiculous NOW() part, the only mysql function known to author, lol. And, may be, null part. Honestly, it's full of "dirty" considerations and one have to keep it all in mind. And, after all, it does not add quotes to strings, but only remove them, lol. It wasn't even tested before posting. I have a similar approach too, but way more usable and sensible one. – Col. Shrapnel Sep 5 '10 at 9:32
@Col: Oh, yeah, you are right, didn't look into the code. I thought the downvotes were for the basic approach, not his (obviously really bad) implementation. -1 – NikiC Apr 10 '11 at 8:56
LOL Rube Goldberg would be proud of this. – Night Owl Aug 2 '11 at 5:35
feedback

Your Answer

 
or
required, but never shown

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