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.

We need to use HttpUtility.HtmlEncode on our website. Do we need to use it for Resources? Is there any potential threat?

<%=HttpUtility.HtmlEncode(Resources.MyResourceString)%>
share|improve this question

3 Answers

up vote 1 down vote accepted

If your resources come from a known-safe source (which I suspect they do), then you don't need to do that, no.

share|improve this answer
Please also see Yuliy's answer; it is actually better than mine. – Andrew Barber Oct 5 '11 at 23:29

If your resources are HTML, then don't reencode them. If they're text, then HtmlEncode them.

If your resources are just plain old text (i.e. could contain raw ampersands or angle brackets), then even if you don't open up an XSS hole, you still need to HtmlEncode them so that you'll generate valid HTML.

share|improve this answer
This is actually a better answer than mine; I'm sort of disappointed in myself for not noting that; HtmlEncode isn't necessarily about security at its root - it's about properly encoding text so that it shows up 'literally' in the output. If the resources are supposed to be 'literal text', they should be encoded when output. – Andrew Barber Oct 5 '11 at 23:29

Not to prevent cross-site scripting - that is, unless your users have access to the resources for your application and can insert something malicious!

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.