Browse by Tags

All Tags » CSRF » ASP.NET (RSS)
More ASP.NET CSRF Protection Options
Barry Dorrans created a filter for CSRF protection in ASP.NET. It's inspired by the ASP.NET MVC CSRF token approach. It's a simple and effective protection mechanism when you can't use the ViewStateUserKey because you've disabled ViewState. It doesn't...

Posted by Alex | 1 comment(s)

ViewStateUserKey Doesn’t Prevent Cross-Site Request Forgery
ViewStateUserKey is not a completely effective mitigation against Cross-Site Request Forgery. It doesn't work for non post-backs (I.e. GET requests), and it doesn't work if the ViewState MAC is turned off. In several different places , we see a piece...

Posted by Alex | 8 comment(s)