首页 > 编程 > .NET > 正文

请慎用ASP.Net的validateRequest="false"

2024-07-10 13:04:47
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,

  asp.net 1.1后引入了对提交表单自动检查是否存在xss(跨站脚本攻击)的能力。当用户试图用之类的输入影响页面返回结果的时候,asp.net的引擎会引发一个 httprequestvalidationexceptioin。默认情况下会返回如下文字的页面:

server error in '/yourapplicationpath' application

a potentially dangerous request.form value was detected from the client
(txtname="<b>").


description: request validation has detected a potentially dangerous client input value, and processing of the request has been aborted. this value may indicate an attempt to compromise the security of your application, such as a cross-site scripting attack. you can disable request validation by setting validaterequest=false in the page directive or in the configuration section. however, it is strongly recommended that your application explicitly check all inputs in this case.

exception details: system.web.httprequestvalidationexception: a potentially dangerous request.form value was detected from the client (txtname="<b>").

....

  这是asp.net提供的一个很重要的安全特性。因为很多程序员对安全没有概念,甚至都不知道xss这种攻击的存在,知道主动去防护的就更少了。asp.net在这一点上做到默认安全。这样让对安全不是很了解的程序员依旧可以写出有一定安全防护能力的网站。

  但是,当我google搜索 httprequestvalidationexception 或者 "a potentially dangerous request.form value was detected from the client"的时候,惊奇的发现大部分人给出的解决方案竟然是在asp.net页面描述中通过设置 validaterequest=false 来禁用这个特性,而不去关心那个程序员的网站是否真的不需要这个特性。看得我这叫一个胆战心惊。安全意识应该时时刻刻在每一个程序员的心里,不管你对安全的概念了解多少,一个主动的意识在脑子里,你的站点就会安全很多。

  为什么很多程序员想要禁止 validaterequest 呢?有一部分是真的需要用户输入"<>"之类的字符。这就不必说了。还有一部分其实并不是用户允许输入那些容易引起xss的字符,而是讨厌这种报错的形式,毕竟一大段英文加上一个asp.net典型异常错误信息,显得这个站点出错了,而不是用户输入了非法的字符,可是自己又不知道怎么不让它报错,自己来处理报错。

  对于希望很好的处理这个错误信息,而不使用默认asp.net异常报错信息的程序员们,你们不要禁用validaterequest=false。

  正确的做法是在你当前页面添加page_error()函数,来捕获所有页面处理过程中发生的而没有处理的异常。然后给用户一个合法的报错信息。如果当前页面没有page_error(),这个异常将会送到global.asax的application_error()来处理,你也可以在那里写通用的异常报错处理函数。如果两个地方都没有写异常处理函数,才会显示这个默认的报错页面呢。

  举例而言,处理这个异常其实只需要很简短的一小段代码就够了。在页面的code-behind页面中加入这么一段代码:

protected void page_error(object sender, eventargs e)
{
    exception ex 
= server.getlasterror();
    
if (ex is httprequestvalidationexception)
    
{
        response.write(
"请您输入合法字符串。");
        server.clearerror(); 
// 如果不clearerror()这个异常会继续传到application_error()。
    }

}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表