0

嗨,我已经在 Angular 5 中开发了 Web 应用程序并托管在 azure 云中。我试图阻止 ddos​​ 附加到我的应用程序。我在 web.config 中添加了以下代码。

  <security>
      <dynamicIpSecurity denyAction="NotFound">
        <denyByRequestRate enabled="true" maxRequests="10" requestIntervalInMilliseconds="2000"/>
        <denyByConcurrentRequests enabled="true" maxConcurrentRequests="10"/>
      </dynamicIpSecurity>
    </security>

现在我想通过并发调用这个应用程序来测试我的应用程序。我这里有两件事。目前我还没有将最新的代码部署到天蓝色,所以我的公共站点中没有上述更改。我正在尝试通过发送并发请求在本地主机中进行测试,因为ping http://localhost:1148/ -t -l 65000当我这样做时,我得到 ping 请求找不到主机错误即将到来。有人可以帮助我进行 ddos​​ 攻击吗?我也尝试像上面那样公开网站,并且弹出相同的错误。有人可以帮助我进行攻击吗?任何帮助,将不胜感激。谢谢你。

4

0 回答 0