Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Recently one hacker tried to slow the website using sleep injection. Although we are using precautions like mysql_real_escape_string() to cover most of vulnerable inputs. we are passing id of the product through querystring and it makes the command as

$id = mysql_real_escape_string($_REQUEST['id']);
$qry = "Select * from products where id = ".$id;

but hacker tried to provide input as

?id=3 and sleep(4)

and query becomes

Select * from products where id = 3 and sleep(4);

Although there are some possible solutions like 1) Check if the product id is numeric or not 2) Remove word sleep from input using some customized function

Is there any other method to stop this? or can you guys please help me which is the best method to prevent sleep injections.

share|improve this question
7  
Are you aware that mysql_ functions are deprecated and you should not be using them? – FreshPrinceOfSO Jan 27 at 7:24
1  
Parameter binding will prevent this – Phil Jan 27 at 7:27
use mysqli_ instead mysql_ – Iswanto San Jan 27 at 7:28
Aye, look at prepared statements to not just prevent 'sleep injection' (which I haven't heard of), bur all types of SQL injection. – sevenseacat Jan 27 at 7:28
+1 Best question I have read today. – Yogesh Suthar Jan 27 at 7:28
show 4 more comments

closed as too localized by hakre, PeeHaa 埽, DaveRandom, Jocelyn, cryptic ツ Apr 24 at 1:13

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

6 Answers

up vote 13 down vote accepted

You are not escaping correctly. mysql_real_escape_string is for escaping SQL string syntax correctly, but you are simply embedding the value as bare value, not as SQL string. You need:

$qry = "SELECT * FROM products WHERE id = '$id'";

Note the quotes around the id in the query.

If the id is numeric though, casting to a number would be more sensible:

$id = (int)$_GET['id'];
share|improve this answer
3  
+1 For pointing out the proper use of mysql_real_escape_string. – Gumbo Jan 27 at 7:35
@deceze : Thanks for the answer. I had accepted it because it's first part means proper use of mysql_real_escape_string() is more relative and more quick answer of my question. – dirtyhandsphp Jan 27 at 8:47
It's worth adding that mysql_* functions are deprecated and should not be used anymore. – Madara Uchiha Apr 23 at 19:17

The best method to prevent SQL injections is to use current technology. The MySQL mysql_ family of functions is deprecated and will be removed from PHP in a future revision.

You should use prepared statements with either MySQLi or PDO instead.

These technologies use prepared statements and parameterized queries. SQL statements are parsed by the database server separately from any parameters. It is impossible for an attacker to inject malicious SQL.

You basically have two options to achieve this:

  1. MySQLi:

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

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

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) you tell the database engine what 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).

share|improve this answer
I understand the concept of “prepared statements” but can you explain why it is invalid to filter the $_REQUEST['id'] as an first layer of protection against unwanted params being passed? – JakeGould Jan 27 at 7:33
1  
The real question is, "Why bother?" Filtering is how we did this in the past, but times change, and we've moved on. – Gordon Freeman Jan 27 at 7:35
For a numerical value you are telling me it all has to fall in the line of “prepared statements” & we should all just trust that modern interface methods—that have flaws that are not apparent until revealed—is better? Do you genuinely suggest pure URL params should just be passed along unchecked? That seems like a problem waiting to happen. – JakeGould Jan 27 at 7:40
1  
That's great, especially the part that says, "...and is much harder to pull off. AFAIK, you almost never see real 2nd order attacks, as it usually easier to social-engineer your way in." And then the comment, "If ALL your queries are parametrized, you're also protected against 2nd order injection. 1st order injection is forgetting that user data is untrustworthy. 2nd order injection is forgetting that database data is untrustworthy (because it came from the user originally)." That puts a cherry on it, don't you think? – Gordon Freeman Jan 27 at 8:04
1  
Hey folks, Gordon is absolutely right. If you think escaping data for SQL is simply a security measure, then you are in for quite a surprise. Don't escape data for something until you use it in the context it should be escaped for. Otherwise, you are just making a mess of your data! Also, second order attacks should never be possible if you build your system right and use prepared queries. You may think it isn't a problem... but it is. Even if you don't see it as a security problem, remember that a simple quote mark in a field will screw you up later. Maybe not malicious, but broken at least. – Brad Jan 27 at 8:18
show 4 more comments

This is wrong question to ask.

"How to prevent mysql injections?" it has to be. Sleep or not sleep - it doesn't matter.

And there are plenty of answers on this question already

share|improve this answer
1  
The question is valid. This thread on the topic seems to have a more reasonable perspective on this issue. – JakeGould Jan 27 at 8:03

you should convert your queries into "prepared statements" using PDO or mysqli.

share|improve this answer

This is the best example to use.

$myvariable = mysql_real_escape_string($_REQUEST['id']);
$myvar = "Select * from products where id = ".$myvariable;
// To protect MySQL injection
$myvariable = stripslashes($myvariable);
$myvar = stripslashes($myvar);
$myvariable = mysql_real_escape_string($myvariable);
$myvar = mysql_real_escape_string($myvar);

share|improve this answer
best example for what? – Your Common Sense Mar 25 at 16:01

Check data-type before filtering with mysql_real_escape

if(is_int($id)){
$id = mysql_real_escape_string($_REQUEST['id']);
$qry = "Select * from products where id = ".$id;
}else{
 //possible sql injection
}

as explained by some people, and PHP manual also ( To test if a variable is a number or a numeric string (such as form input, which is always a string), you must use is_numeric(). )

if(!empty($id) && is_numeric($id)){
$id = mysql_real_escape_string($_REQUEST['id']);
$qry = "Select * from products where id = ".$id;
}else{
 //possible sql injection
}

or

if(preg_match('/[0-9]+/', $id)){
$id = mysql_real_escape_string($_REQUEST['id']);
$qry = "Select * from products where id = ".$id;
}else{
 //possible sql injection
}
share|improve this answer
6  
will always be string coming from request vars – Marshall House Jan 27 at 7:29
1  
I think is_numeric() would suffice. – Paolo Stefan Jan 27 at 7:31
2  
is_numeric accepts floats, hex, negative numbers and some other number formats. ctype_digit accepts only digits inside of the string. – Fabrício Matté Jan 27 at 7:33
2  
Yes, but you do not check if the string contains other characters in front. Your regex, fixed, looks like this: /^[0-9]+$/ - Note the anchor signs that ensure that the start and end of the string are covered. This way, no letters can sneak in. And please do not take it as an attack when people point out errors. – Sven Jan 27 at 11:21
1  
@Sven: you are right, I said also previously, I just proposed the idea not the exact solution, let the user to re-think and create their own pattern, you welcome:) – Akam Jan 27 at 11:37
show 7 more comments

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