Html Entities are a very good way at preventing xss and preserving meaning to users of the system. This is an excellent ratio of security and usability and this is why Html Entities is a very popular xss defensive measure. Currently for StackOverflow posts tags are stripped out, unless they are in a code block. This recently became rather upsetting when talking about HTML, and then realizing how often people talk about tags. (Like this post :) and this html that you can't see:

I know what I'm talking about when it comes to xss. I have many cve nubmers to my name, here an ironic xss vulneralbity in a Profense, which is a waf: CVE-2009-0468. Stripping tags does not make your system more secure against xss than using html entities. In fact xss is still possible even without greater than and less than symbols. For instance this code is vulnerable to xss because the user input is within an href.

print('<A HREF="http://www.xssed.com/'.striptags($_REQUEST[xss]).'">link</a>');

You don't need <> to execute javascript in this case because you can use onmouseover, here is an example attack:

http://127.0.0.1/test.php?xss=" onMouseOver="alert(/xss/)

In php you use this following code to prevent against xss. This is a common type of xss even in applications written by highly skilled software engineers.

patched:

print('<A HREF="http://www.xssed.com/'.htmlspeicalchars($_REQUEST['XSS'],ENT_QUTOES).'">link</a>');

More information on this attack: http://www.owasp.org/index.php/XSS_%28Cross_Site_Scripting%29_Prevention_Cheat_Sheet#RULE_.233_-_JavaScript_Escape_Before_Inserting_Untrusted_Data_into_HTML_JavaScript_Data_Values

share|improve this question
12  
The example attack should include an example. Post a link that goes through Markdown and shows an alert. – Kobi Jan 26 '10 at 5:25
4  
Also, I do not believe that StackOverflow is built on PHP. I believe it is built on ASP – Chacha102 Jan 26 '10 at 5:28
Wow, you guys are thick. – Rook Jan 26 '10 at 6:43
5  
You have still yet to show an example attack. – random Jan 26 '10 at 6:50
5  
(refereshing and waiting patiently for the alert to pop out on this page...) – o.k.w Jan 26 '10 at 7:23
2  
Put the code here or as a new SO post. We'll make sure the moderators do not close it. :) – o.k.w Jan 26 '10 at 7:34
5  
@Unknown - If you're suggesting Stack Overflow is subject to attacks, please demonstrate. Otherwise, I think nobody understood your question - what does your site has to do with it? – Kobi Jan 26 '10 at 7:34
2  
You should edit your question extensively. – Kobi Jan 26 '10 at 7:41
3  
I'm not "on your back", and I apologize if I came off offensive. However - your post is not clear. If you want a "show XML instead of hiding it" feature request, you should state it clearly. Most of your post explains security concerns, which I'm sure the SO team already know... – Kobi Jan 26 '10 at 7:49
16  
Not if this is the way you explain things. – random Jan 26 '10 at 8:05
8  
It doesn't make it any harder to talk about HTML than any other code. Use backticks within a paragraph, or four spaces for a code block. Job done, no problems. Using HTML entities may be a better way of avoiding XSS, but the usability complaint seems pretty tame to me. Also, it's occasionally useful to be able to write limited HTML (tags which don't get stripped) within posts. – Jon Skeet Jan 26 '10 at 8:16
14  
Downvoters: is it fair to suggest that the downvotes may be for the attitude of the OP as much as the suggestion itself? – Jon Skeet Jan 26 '10 at 13:27
2  
This is clearly just spam. – GEOCHET Jan 26 '10 at 15:11
1  
@Jon Skeet: if you hover over the down arrow it says "this question is unclear or unhelpful"... It is unclear, and it is unhelpful, and I downvoted because of that. – Andreas Bonini Jan 26 '10 at 16:40
1  
@JonSkeet: yes, my downvote is based partly on the attitude of the OP. i typically don't downvote a bad post immediately. but if people leave comments saying the post is unclear and the OP refuses to edit or clarify, then i will downvote. – Kip Jan 26 '10 at 21:25
show 7 more comments

1 Answer

Please refer to

http://stackoverflow.com/editing-help

To post code, click the code button in the editing toolbar or manually indent by 4 spaces.

share|improve this answer
5  
You missed the point entierly. – Rook Jan 26 '10 at 6:44
2  
you do realize that HTML markup is fully allowed in posts, right? – Jeff Atwood Jan 26 '10 at 7:15
Your right, so i just put HTMl in my post and i can't see it. Go ahead click "edit" on my post and you'll see the HTML after this: "that you can't see" – Rook Jan 26 '10 at 7:31
1  
Dood, I'm so sorry i didn't realize you are one of the founders of this site. You are awesome. – Rook Jan 26 '10 at 7:50
5  
I think I understand your request -- invalid HTML should be escaped instead of stripped -- but your question is very unclear. – Jeff Atwood Jan 26 '10 at 7:59
4  
Well, I think we all now understand (at last) what the OP is actually asking. Great!!! – o.k.w Jan 26 '10 at 8:38
20  
Also, can we refer to Jeff as "The Dood" from now on? – balpha Jan 26 '10 at 8:58
8  
@balpha, it might be the only useful thing to come out of this. – pavium Jan 26 '10 at 10:29

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged