IBM Security Appscan漏洞筛查-HTTP 动词篡改的认证旁路漏洞,具体解决方案:

在Web.Config中system.webServer节点增加配置security:

  1. <security>
  2.    <requestFiltering>
  3.      <verbs allowUnlisted="false">
  4.        <add verb="GET" allowed="true" />
  5.        <add verb="POST" allowed="true" />
  6.      </verbs>
  7.    </requestFiltering>
  8.  </security>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-12
  • 2022-12-23
  • 2021-08-09
  • 2021-06-02
  • 2021-12-20
猜你喜欢
  • 2021-08-15
  • 2022-12-23
  • 2021-06-23
  • 2021-11-20
  • 2021-07-30
  • 2021-07-15
相关资源
相似解决方案