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.

At the moment, I apply a 'throw everything at the wall and see what sticks' method of stopping the aforementioned issues. Below is the function I have cobbled together:

function madSafety($string)
{

$string = mysql_real_escape_string($string);
$string = stripslashes($string);
$string = strip_tags($string);
return $string;

}

However, I am convinced that there is a better way to do this. I am using FILTER_ SANITIZE_STRING and this doesn't appear to to totally secure.

I guess I am asking, which methods do you guys employ and how successful are they? Thanks

share|improve this question
dupe: stackoverflow.com/questions/129677/… – troelskn Feb 20 '09 at 10:54
1  
+1 for cobbling the best of what works – William Isted Apr 5 at 8:41

3 Answers

up vote 24 down vote accepted

Just doing a lot of stuff that you don't really understand, is not going to help you. You need to understand what injection attacks are and exactly how and where you should do what.

In bullet points:

  • Disable magic quotes. They are an inadequate solution, and they confuse matters.
  • Never embed strings directly in SQL. Use bound parameters, or escape (using mysql_real_escape_string).
  • Don't unescape (eg. stripslashes) when you retrieve data from the database.
  • When you embed strings in html (Eg. when you echo), you should default to escape the string (Using htmlspecialchars).
  • If you need to embed html-strings in html, you must consider the source of the string. If it's untrusted, you should pipe it through a filter. strip_tags is in theory what you should use, but it's flawed; Use HtmlPurifier instead.

See also: http://stackoverflow.com/questions/129677/whats-the-best-method-for-sanitizing-user-input-with-php

share|improve this answer
Excellent - this is significantly better than the response I was writing, now abandoned. +1 – Dominic Rodger Feb 20 '09 at 10:54
Really nice reminder to all of us :) +1 – itsols May 9 '11 at 12:01

The best way against SQL injection is to bind variables, rather then "injecting" them into string. http://www.php.net/manual/en/mysqli-stmt.bind-param.php

As for XSS, use strip_tags() with a list of allowed tags.

share|improve this answer
Be carefully with allowable tags - pretty well any tag can have JS embedded into it. – Dominic Rodger Feb 20 '09 at 10:23
Also - see isisblogs.poly.edu/2008/08/16/… – Dominic Rodger Feb 20 '09 at 10:27
strip_tags is flawed .. escape strings, or if you really need to allow html, use htmlpurifier – troelskn Feb 20 '09 at 10:47

Don’t! Using mysql_real_escape_string is enough to protect you against SQL injection and the stropslashes you are doing after makes you vulnerable to SQL injection. If you really want it, put it before as in:

function madSafety($string)
{
    $string = stripslashes($string);
    $string = strip_tags($string);
    $string = mysql_real_escape_string($string);
    return $string;
}

stripslashes is not really useful if you are doing mysql_real_escape_string.

strip_tags protects against HTML/XML injection, not SQL.

The important thing to note is that you should escape your strings differently depending on the imediate use you have for it.

When you are doing MYSQL requests use mysql_real_escape_string. When you are outputing web pages use htmlentities. To build web links use urlencode

As vartec noted, if you can use placeholders by all means do it.

share|improve this answer
2  
Actually, mysql_real_escape_string is not entirely safe either. See ilia.ws/archives/… – Michael Borgwardt Feb 25 '09 at 10:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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