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.

Is it necessary to filter/escape unsafe variables in <title> or other tags in <head> to prevent XSS?

share|improve this question
1  
Just because you don't know how to hack something, doesn't mean you shouldn't sanitize it anyways. As somebody below pointed out, there is a way to XSS your webpage, always assume there is a way and never cut corners on your sanity checking. – TravisO Mar 12 '09 at 19:45

2 Answers

up vote 10 down vote accepted

Strictly speaking it is necessary to do htmlspecialchars() on absolutely everything you output to a web page from PHP.

If you come to a point where this produces a wrong result (i.e. HTML code is showing up in the browser because of double encoding) you have found a design flaw in your application.

XSS would not be a problem if people would stick to this simple rule.

share|improve this answer

Yes. You should always use the htmlspecialchars function on values that may contain HTML special characters.

share|improve this answer

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.