我们有一个ASP.NET Web表单应用程序偶尔会生成如下所示的验证错误。 这可能是什么原因?
A validation error has occurred. Exception type: System.Web.HttpRequestValidationException Exception message: A potentially dangerous Request.QueryString value was detected from the client (_TSM_CombinedScripts_="... </div> ..."). Request URL: https://...:443/Default.aspx?_TSM_HiddenField_= ctl00_sm1_HiddenField&_TSM_CombinedScripts_= %3b%3bAjaxControlToolkit%2c+Version%3d3.5.11119.20050%2c +Culture%3dneutral%2c +PublicKeyToken%3d28f01b0e8%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 %20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20 </div>%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20<div%20class= Stack trace: at System.Web.HttpRequest.ValidateString(String s, String valueName, String collectionName) at System.Web.HttpRequest.ValidateNameValueCollection(NameValueCollection nvc, String collectionName) at System.Web.HttpRequest.get_QueryString() at System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull) at System.Web.UI.Page.DeterminePostBackMode() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) at System.Web.UI.Page.ProcessRequest(HttpContext context) at ASP.user_default_aspx.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
更多详情:
我认为这不是'恶意'请求,而是由于对此脚本链接的一些错误处理。如果是这样,如何处理?
以下脚本块位于生成的相关页面的html源代码中:
<script src="/Default.aspx?_TSM_HiddenField_= ctl00_sm1_HiddenField&_TSM_CombinedScripts_= %3b%3bAjaxControlToolkit%2c+Version%3d3.5.11119.20050%2c +Culture%3dneutral%2c +PublicKeyToken%3d28f01c0e84b6d53e%3aen%3a7e147239-dd05-47b0-7fb3- f743a139f982%3be2e86bf9%3a1aa13a87%3a8ccd9c1b%3a9ea3f0e2%3a9e7e87e9 %3a4c9865be%3aba594826%3ac4c00916%3a630bb7c2%3af442e939" type="text/javascript"></script>
答案 0 :(得分:1)
ASP.NET默认情况下不允许在Querystring或Form字段值中使用任何HTML(基本上是潜在危险值列表)。这是由@Page指令的ValidateRequest
属性(默认为true
)设置的。
您可以关闭此功能,但它会打开您的XSS攻击。更好的方法是确保所有的查询字符串都经过正确的URL编码。
在您的情况下,它似乎是导致问题的</div>
标记。如果通过Javascript创建此查询字符串,我建议使用encodeURIComponent()函数对值进行编码。