码迷,mamicode.com
首页 > 其他好文 > 详细

TOMCAT禁用不安全请求方式

时间:2017-08-06 14:03:35      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:ace   span   str   安全   上下   att   method   head   nec   

查看tomcat日志,发现有些请求方式是CONNECT、HEAD,不是正常的请求,决定禁掉这样的。在web.xml上加上下面代码可以禁掉这些请求方式,以这些方式请求服务tomcat将会返回403状态。

(加在tomcat/conf/web.xml下会对整个tomcat生效,加在单个项目下只会对这个项目生效)

<security-constraint>  
    <web-resource-collection>  
        <url-pattern>/*</url-pattern>  
        <http-method>PUT</http-method>  
        <http-method>DELETE</http-method>  
        <http-method>HEAD</http-method>  
        <http-method>OPTIONS</http-method>  
        <http-method>TRACE</http-method>
        <http-method>CONNECT</http-method>
    </web-resource-collection>  
    <auth-constraint></auth-constraint>  
</security-constraint>

TOMCAT禁用不安全请求方式

标签:ace   span   str   安全   上下   att   method   head   nec   

原文地址:http://www.cnblogs.com/yuanye007/p/7294253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!