The short answer is yes, yes there is a way to get around mysql_real_escape_string().
For Very OBSCURE EDGE CASES!!!
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...
mysql_query('SET NAMES GBK');
$var = mysql_real_escape_string(chr(0xbf) . chr(0x27) . " OR 1=1 /*");
$query = "SELECT * FROM test WHERE name = '$var' LIMIT 1";
In certain circumstances, that will return more than 1 row. Let's disect what's going on here:
Selecting a Character Set
mysql_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. If we used the call to the C API function mysql_set_charset(), we'd be fine. But more on why in a minute...
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...
mysql_real_escape_string()
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 mysql_real_escape_string()...
The Bad
Now, it gets worse. PDO by default with MySQL uses emulated prepared statements. That means that on the client side, it basically does a sprintf through mysql_real_escape_string() (in the C library). That means, under the above circumstances, the following code will result in a successful injection:
$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 /*"));
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 Ugly
So, I had said at the very beginning that we could have prevented all of this if we used mysql_set_charset('GBK') from the beginning. And that's true. 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.
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)...
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 mysql_real_escape_string()...
mysql_*functions in new code. They are no longer maintained and the deprecation process has begun on it. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – tereško Dec 3 '12 at 20:47