服务器扫描发现漏洞-可通过HTTP获取远端WWW服务信息

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

可通过HTTP获取远端WWW服务信息 [Microsoft-IIS/7.5]

漏洞描述 本插件检测远端HTTP Server信息。这可能使得攻击者了解远程系统类型以便进行下一步的攻击。
解决方案 NSFOCUS建议您采取以下措施以降低威胁

 

服务器扫描发现漏洞-可通过HTTP获取远端WWW服务信息_第1张图片

 

处理方法:

1.实现IHttpModule接口 将Response Headers 相应信息移除

2.在web.config的的 子节点中添加    节点

 

  public  class HeaderFilterHttpModule: IHttpModule
    {
        public void Init(HttpApplication context)
        {
            context.PreSendRequestHeaders += OnPreSendRequestHeaders;
        }

        public void Dispose()
        { }

        void OnPreSendRequestHeaders(object sender, System.EventArgs e)
        {
            //过滤掉 Response Headers 的banner ,以隐藏服务器和平台信息
            HttpContext.Current.Response.Headers.Remove("Server");
            HttpContext.Current.Response.Headers.Remove("X-AspNet-Version");
            HttpContext.Current.Response.Headers.Remove("X-Frame-Options");

        }

    }

 

web.config:

   
     
 
   

   
     
       
     

   

 

 

 

 

转载于:https://my.oschina.net/guanxinsui/blog/1486352

你可能感兴趣的:(服务器扫描发现漏洞-可通过HTTP获取远端WWW服务信息)