The short answer is NO, PDO prepares will not defend you from all possible SQL-Injection attacks. for certain obscure edge-cases
I'm adapting this answer to talk about PDO...
The long answer isn't so easy. It's based off an attack demonstrated here.
The Attack
So, let's start off by showing the attack...
$pdo->query('SET NAMES GBK');
$var = chr(0xbf) . chr(0x27) . " OR 1=1 /*";
$query = "SELECT * FROM test WHERE name = ? LIMIT 1";
$stmt = $pdo->prepare($query);
$stmt->execute(array($var));
In certain circumstances, that will return more than 1 row. Let's disect what's going on here:
Selecting a Character Set
$pdo->query('SET NAMES GBK');
For this attack to work, we need to have the character set the server's expecting have the ability for ASCII bytes be valid in multi-byte sequences. As it turns out, there are 2 major character sets that do that, GBK and BIG5. We'll select GBK here.
Now, it's very important to note the use of SET NAMES here. This sets the character set ON THE SERVER. There is another way of doing it, but we'll get there soon enough.
The Payload
The payload we're going to use for this injection is the character 0xBF27. Now, in GBK, that's not a valid multi-byte character. But in Latin-1, it's two single byte characters (0xBF followed by 0x27). Note that in ASCII and GBK, 0x27 is a literal ' character.
We construct the invalid character so that if we called addslashes() on it, we'd insert a backslash character before the ' character. So we'd wind up with 0xBF5C27, which in GBK is a two character sequence: 0xBF5C followed by 0x27. Or in other words, a valid character followed by a '. But we're not using addslashes(). So on to the next step...
$stmt->execute()
The important thing to realize here is that PDO by default does NOT do true prepared statements. It emulates them (for MySQL). Therefore, PDO internally builds the query string, calling mysql_real_escape_string() (the C API function) on each bound string value.
The C API call to mysql_real_escape_string() differs from addslashes() in that it knows the connection character set. So it can perform the escaping properly for the character set that the server is expecting. However, up to this point, the client thinks that we're still using UTF8 for the connection, because we never told it otherwise. We did tell the server we're using GBK, but the client still thinks it's UTF8.
Therefore, the call to mysql_real_escape_string() inserts the backslash, and we have a free hanging ' character in our escaped content. In fact, if we were to look at $var in the GBK character set, we'd see something like:
𖠂' OR 1=1 /*
Which is exactly what we want.
The Query
This part is just a formality, but here's the rendered query:
SELECT * FROM test WHERE name = '𖠂' OR 1=1 /*' LIMIT 1
Congratulations, you just successfully attacked a program using PDO Prepared Statements...
The Simple Fix
Now, it's worth noting that you can prevent this by disabling emulated prepared statements:
$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
That will result in a true prepared statement (the data being sent over in a separate packet from the query).
The Correct Fix
The problem here is that we didn't call the C API's mysql_set_charset() instead of SET NAMES. If we did, we'd be fine. However, it should be noted that PDO didn't expose the C API for mysql_set_charset() until 5.3.6. And then it's exposed as a DSN parameter called charset.
So prior to 5.3.6, there's literally no way to prevent this style of attack in all possible circumstances. (PDO will still fall back to emulated prepared statements for kinds of statements that MySQL can't prepare, like an ALTER TABLE command)... 5.3.6 and later, add the charset DSN parameter instead of using SET NAMES...
The Saving Grace
The saving grace here is that MySQL fixed this hole. I tried looking tonight, but I couldn't find the exact version that fixed it. I remember it's in the 5.1 series, so if you're using current versions of MySQL you should be safe. But if you're stuck on an older version, be careful.
Safe Examples
The following examples are safe:
mysql_query('SET NAMES UTF8');
$var = mysql_real_escape_string(chr(0xbf) . chr(0x27) . " OR 1=1 /*");
$query = "SELECT * FROM test WHERE name = '$var' LIMIT 1";
Because the server's expecting UTF-8...
mysql_set_charset('GBK');
$var = mysql_real_escape_string(chr(0xbf) . chr(0x27) . " OR 1=1 /*");
$query = "SELECT * FROM test WHERE name = '$var' LIMIT 1";
Because we've properly set the character set so the client and the server match.
$pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
$pdo->query('SET NAMES GBK');
$stmt = $pdo->prepare("SELECT * FROM test WHERE name = ? LIMIT 1");
$stmt->execute(array(chr(0xbf) . chr(0x27) . " OR 1=1 /*"));
Because we've turned off emulated prepared statements.
$pdo = new PDO('mysql:host=localhost;dbname=testdb;charset=GBK', $user, $password);
$stmt = $pdo->prepare("SELECT * FROM test WHERE name = ? LIMIT 1");
$stmt->execute(array(chr(0xbf) . chr(0x27) . " OR 1=1 /*"));
Because we've set the character set properly.
$mysqli->query('SET NAMES GBK');
$stmt = $mysqli->prepare("SELECT * FROM test WHERE name = ? LIMIT 1");
$param = chr(0xbf) . chr(0x27) . " OR 1=1 /*";
$stmt->bind_param('s', $param);
$stmt->execute();
Because MySQLi does true prepared statements all the time.
Wrapping Up
If you:
- Use Modern Versions of MySQL (late 5.1, all 5.5, 5.6, etc)
OR
- Use
mysql_set_charset() / $mysqli->set_charset()
OR
- Use the DSN charset parameter to PDO
OR
- Don't use GBK or BIG-5 (you only use UTF-8 / UCS-2 / Latin-1 / ASCII)
You're 100% safe.
If all of those are false, you're vulnerable **even though you're using PDO Prepared Statements...
Addendum
I've been slowly working on a patch to change the default to not emulate prepares for a future version of PHP. The problem that I'm running into is that a LOT of tests break when I do that. One problem is that emulated prepares will only throw syntax errors on execute, but true prepares will throw errors on prepare. So that can cause issues (and is part of the reason tests are borking).