One of my colleagues encountered this error in Sitecore 6.6:
A potentially dangerous Request.QueryString value was detected from the client
You might think that this error was caused by the Microsoft AntiCSRF implementation by Sitecore. But it is not, it’s actually caused by .NET 4.0:
According to Microsoft, they have changed the ASP.NET Request validation:
In ASP.NET 4, by default, request validation is enabled for all requests, because it is enabled before the BeginRequest phase of an HTTP request. As a result, request validation applies to requests for all ASP.NET resources, not just .aspx page requests. This includes requests such as Web service calls and custom HTTP handlers. Request validation is also active when custom HTTP modules are reading the contents of an HTTP request. Source: http://www.asp.net/whitepapers/aspnet4/breaking-changes#0.1__Toc256770147
If you encounter this error, you need to switch the RequestValidationMode back to the good old mode:
<httpRuntime requestValidationMode="2.0" />
Read more here:
Thanks to Anders Laub Christoffersen for the tip.
