vote up 2 vote down star

In standard ASP.net applications ASP.net offered some protection from XSS attacks with validateRequest throwing detect dangerous input errors if some one tried to. This functionality seems to have been taken out of MVC any idea why?

Thanks,

Alex

flag

4 Answers

vote up 3 vote down check

This is a hard line to cross. Is your web application just a RESTful web resource like it 'should' be? Or is it trying to do more. Next thing you know you have 100 hidden input fields: __VIEWSTATE, __EVENTTARGET, __EVENTARGUMENT, etc, etc.

As you know, you can still prevent XSS attacks in MVC. Just google it to see several examples. But the reason is basically that MVC is a different, 'cleaner' type of web application.

EDIT: I don't know if what I've said above is clear. But the idea is that MVC isn't going to try to be more than what it is (like ASP.NET does). They both have their strong points and reasons.

link|flag
1  
Thanks Timothy, I dont have a particular website in mind. I think the request validation still is in keeping with the restfulnature as itdoest interfer with the request until it is received and then only if its potentially dangerous. What approach are you taking with xss? – alexmac Nov 29 '08 at 20:09
vote up 2 vote down

I hope you have something more robust than ValidateRequest to avoid XSS, anyway.

link|flag
2  
It is more helpful to suggest alternatives than to simply reject an approach. – OrbMan Nov 29 '08 at 16:06
Is ValidateRequest really so bad? I ensure that I encode any html inputted by the user but would be interested in what approach you are taking? – alexmac Nov 29 '08 at 20:10
"Magic" is bad. If you don't understand the vulnerabilities of your application and how to contradict them, your reliance on other people to make your application safe is dangerous. Its a hole in your understanding that should be educated away, not wallpapered over. – Will Nov 29 '08 at 20:14
BTW, its a never ending process. I'm learning more about it myself. The idea that there are severe vulnerabilities out there that I don't understand scares me, and it should scare any programmer... – Will Nov 29 '08 at 20:15
geek_in_belgium do you have an example that bypasses the asp.net built in features? – alexmac Nov 30 '08 at 16:22
show 1 more comment
vote up 1 vote down

I find the ValidateRequest solution as a hack. In my opinion 'warding off XSS' is a Business Rule; therefore let the Model handle the situation.

I really like the explanation regarding the desire to better follow REST principles. As to the 100 hidden fields, it reminds me of an ASP solution I provided some years ago; I used a proliferation of hidden fields to carry metadata. Not pretty.

link|flag
vote up 2 vote down

I know this question is old but I thought I could answer it anyway.

There is a ValidateInput action filter attribute which can be added to actions.

[ValidateInput(true)]
public ActionResult Foo()
{

}
link|flag

Your Answer

Get an OpenID
or

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