I'm trying to figure out what the the minimum amount of encoding would be that would protect a site from XSS.
I know for sure I'll need to encode < (<) and > (>) inside of tags, " (") and ' (') inside attributes.
Do I also need to encode & (&)? I was having trouble with double encoding when the user was saving data (because & would become &amp;). Are there any security vulnerabilities or downsides that would happy if I didn't encode the ampersands? This would mean they'd be able to input any HTML entities they wanted.
By HTML entities I specifically mean ampersand-prefixed sequences that correspond to entities (like © ™).
This question is language-agnostic (except for the HTML part, of course).
Edit: heh, stack-overflow lets me keep my html encoded entities :) That might be telling.
htmlentities– Waleed Khan Jan 17 at 15:26&you should encode it. How are you to know he didn't actually mean&? Maybe he's discussing HTML encoding? Anyway, if you don't encode it the same as all the other characters, then when you come to decode it, you'll have a mismatch. Then there could indeed by a vulnerablilty, if he enters&lt;script&gt;-- if you haven't fully encoded it all as he entered it, it could be decoded to a<script>tag. And then you're in trouble. – SDC Jan 17 at 16:32