I know that lot of questions about HTML sanitizers have appeared in SO, but I don't know if they do what I want, I have a little mess since some of the recommended approaches have more than 4 years old.

I have a page with the TinyMCE editor. Of course, this editor send HTML to the server, and expect HTML, so I have created a entity with a String property decorated with the [AllowHtml] attribute. It works well.

Now, I want to ensure that nobody tries to send a <script> tag, or a <img onerror="">, or whatever way of execute JS, or add CSS that point to external urls.

What is the best solution at the moment?

WPL has the HtmlSanitizationLibrary, but how can I know what tags are considered "secure"?

WPL has not released anything from last April, and it was the beta. So I was wondering if is this project active?

Cheers.

link|improve this question

It's still active. The Sanitizer however, well, it's languishing these days. As folks have moved to XHTML the sanitizer isn't up to the job, and a rewrite isn't on the table. As TinyMCE does produce correct XHTML markup you can use Linq2Xml to query the DOM and sanitize to your hearts content. That's probably a better long term solution (and, hmm, gives me an idea for a blog or two) – blowdart Dec 30 '11 at 22:36
feedback

1 Answer

up vote 1 down vote accepted

WPL is the de-facto standard. Run the string through it and you are safe to print it unencoded:

@Html.Raw(Model.SomePropertyThatWasSanitizedWithWPL)
link|improve this answer
Yes, I use the Html.Raw method already. But my question is, which tags/attributes are striped down? – NullOrEmpty Dec 29 '11 at 13:42
@vtortola, the <script> tags as well as attributes on any tag that might call javascript functions. Things like onclick, ... basically anything that could execute javascript. – Darin Dimitrov Dec 29 '11 at 13:43
The safe list isn't documented I'm afraid (outside of you delving into the code) – blowdart Dec 30 '11 at 22:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.