vote up 6 vote down star
2

I have been reading up on Anti-XSS Security Runtime Engine and it looks like a nice solution for web forms because it inspects controls via reflection and automatically encodes data where appropriate. However as I don't really use server side controls in ASP.NET MVC, it does not seem to be a viable solution for ASP.NET MVC. Is this correct or am I missing something?

flag

1  
Interesting question- we had some security consultants rave about this the other day at work. I'd be interested in finding people's adoption of it. – RichardOD Jun 16 at 20:22

2 Answers

vote up 1 vote down check

Phil Haack has an interesting blog post here- http://haacked.com/archive/0001/01/01/take-charge-of-your-security.aspx. He suggests using Anti-XSS combined with CAT.NET.

link|flag
Reading this article pretty much re-affirms my understanding of lack of server side controls in ASP.NET MVC. "With MVC, we’ve swapped server controls with our helper methods, which properly encode output" – Blegger Jun 18 at 15:19
vote up 1 vote down

The Anti-XSS Security Runtime Engine is an HTTP Module primarily designed around updating legacy ASP.NET applications. If you've already written the ASP.NET MVC application with proper data cleansing with the built in HTML Helpers (i.e. Html.Encode()), then the Anti-XSS Engine adds nothing new, and requires additional configuration (for necessary white-lists) and error checking.

All in all, you should not rely on the Anti-XSS Engine, especially if you rely on explicit control of when input is and is not rendered as HTML.

link|flag

Your Answer

Get an OpenID
or

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