码迷,mamicode.com
首页 > Web开发 > 详细

安全:http host头攻击漏洞

时间:2020-08-03 18:37:40      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:order   inline   play   img   turn   return   blog   方法   col   

技术图片

nginx中修复:

第一种(默认server):

server {
       listen 443 default;
       server_name _;
       location / {
            return 403;
       }
    }

第二种(特定server):

if ($http_Host !~*^192.168.1.32:443$){
            return 403;
        }

这种方法在重新加载配置时报错了

安全:http host头攻击漏洞

标签:order   inline   play   img   turn   return   blog   方法   col   

原文地址:https://www.cnblogs.com/huiy/p/13427401.html

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