启用了不安全的 HTTP 方法

来源:互联网 发布:kmeans聚类算法python 编辑:程序博客网 时间:2024/05/21 03:29

启用了不安全的 HTTP 方法

url: http://www.cnblogs.com/jimor/p/3418089.html

 

posted on 2013-11-11 16:12 jinjinwang

IBM appscan安全漏洞扫描--启用了不安全的 HTTP 方法

 

appscan修订建议:

 

如果服务器不需要支持 WebDAV,请务必禁用它,或禁止不必要的 HTTP 方法(动词)。

 

 

<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>

        </web-resource-collection>

        <auth-constraint></auth-constraint>

</security-constraint>

 

 

0 0
原创粉丝点击