I am saving user-submitted HTML (in a database). I must prevent Javascript injection attacks. The most pernicious I have seen is the script in a style="expression(...)".
In addition to this, a fair amount of valid user content will include special characters and XML constructs, so I'd like to avoid a white-list approach if possible. (Listing every allowable HTML element and attribute).
Examples of Javascript attack strings are:
1)
"Hello, I have a <script>alert("bad!")</script> problem with the <dog> element..."
2)
"Hi, this <b style="width:expression(alert('bad!'))">dog</b> is black."
Is there a way to prevent such Javascript, and leave the rest intact?
The only solution I have so far is to use a regular expression to remove certain patterns. It solves case 1, but not case 2.
Edit: Sorry, forgot to mention environment - it's essentially the MS stack:
- SQL Server 2005
- C# 3.5 (ASP.NET)
- Javascript (obviously) and jQuery.
I would like the chokepoint to be the ASP.NET layer - anyone can craft a bad HTTP request.
Edit 2:
Thanks for the links everyone. Assuming that I can define my list (he content will include many mathematical and programming constructs, so a whitelist is going to be very annoying) I still have a question here:
What kind of parser will allow me to just remove the "bad" parts? The bad part could be an entire element, but then what about these scripts that reside in the attributes. I can't remove < a hrefs > willy-nilly.