欢迎光临
我们一直在努力

在Web应用程序中添加其他规范化预防措施-.NET教程,安全和优化

建站超值云服务器,限时71元/月

microsoft asp.net 开发人员通过向 web 应用程序的根目录中存储的 global.asax 文件添加 application_beginrequest 事件处理程序,可以为 web 应用程序添加更多检查内容,以帮助减少规范化问题。此事件处理程序对每个 web 请求均会执行,程序员可以在该程序中方便地插入代码来帮助防范规范化问题。
代码示例
下面的示例演示了如何将 application_beginrequest 事件处理程序添加到 global.asax 文件。该事件处理程序将执行有助于防止无效字符和格式不正确的 url 的路径验证,从而可以帮助防范常见的规范化问题。
global.asax 代码示例 (visual basic .net)
<script language=”vb” runat=”server”>
sub application_beginrequest(sender as object, e as eventargs)
    if (request.path.indexof(chr(92)) >= 0 or _
        system.io.path.getfullpath(request.physicalpath) <> request.physicalpath) then
        throw new httpexception(404, “not found”)
    end if
end sub
</script>

global.asax 代码示例 (c#)
<script language=”c#” runat=”server”>
void application_beginrequest(object source, eventargs e) {
    if (request.path.indexof(“\\”) >= 0 ||
        system.io.path.getfullpath(request.physicalpath) != request.physicalpath) {
        throw new httpexception(404, “not found”);
    }
}
</script>

——————————————————————————–

这篇文章中的信息适用于:
• microsoft asp.net (included with the .net framework 1.0)
• microsoft asp.net 1.1
• microsoft .net framework 1.0
• microsoft .net framework 1.0 service pack 1
• microsoft .net framework 1.0 service pack 2
• microsoft .net framework 1.0 service pack 3
• microsoft .net framework 1.1
• microsoft .net framework 1.1 service pack 1 (sp1)

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在Web应用程序中添加其他规范化预防措施-.NET教程,安全和优化
分享到: 更多 (0)