zoukankan      html  css  js  c++  java
  • ICMP timestamp请求响应漏洞 防火墙上过滤外来的ICMP timestamp(类型 13)报文以及外出的ICMP timestamp回复报文

    ICMP timestamp请求响应漏洞 防火墙上过滤外来的ICMP timestamp(类型 13)报文以及外出的ICMP timestamp回复报文


      

     ICMP timestamp请求响应漏洞
    详细描述 远程主机会回复ICMP_TIMESTAMP查询并返回它们系统的当前时间。

    这可能允许攻击者攻击一些基于时间认证的协议。
    解决办法 NSFOCUS建议您采取以下措施以降低威胁:

    * 在您的防火墙上过滤外来的ICMP timestamp(类型 13)报文以及外出的ICMP timestamp回复报文。
    威胁分值 2.1
    危险插件
    发现日期 1997-08-01
    CVE编号 CVE-1999-0524
    CNNVD编号 CNNVD-199708-003
    CNCVE编号 CNCVE-19990524
    CVSS评分 2.1

    解决步骤如下:

    (说明:如果 /etc/sysconfig/ 目录下没有 iptables 文件,需要安装 iptables,请参考:https://www.cnblogs.com/miracle-luna/p/13714709.html

    1、修改 iptables 文件

    /etc/sysconfig/iptables 文件中,增加如下内容:

    -A INPUT -p icmp --icmp-type timestamp-request -j DROP
    -A INPUT -p icmp --icmp-type timestamp-reply -j DROP

    修改后,iptables 文件内容如下:

    # sample configuration for iptables service
    # you can edit this manually or use system-config-firewall
    # please do not ask us to add additional ports/services to this default configuration
    *filter
    :INPUT ACCEPT [0:0]
    :FORWARD ACCEPT [0:0]
    :OUTPUT ACCEPT [0:0]
    
    -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
    -A INPUT -p icmp -j ACCEPT
    -A INPUT -i lo -j ACCEPT
    -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
    
    # 过滤外来的ICMP timestamp(类型 13)报文以及外出的ICMP timestamp回复报文
    -A INPUT -p icmp --icmp-type timestamp-request -j DROP
    -A INPUT -p icmp --icmp-type timestamp-reply -j DROP
    
    -A INPUT -j REJECT --reject-with icmp-host-prohibited
    -A FORWARD -j REJECT --reject-with icmp-host-prohibited
    COMMIT

    2、保存 iptables 文件

    service iptables save

    3、重载 iptables 文件

    systemctl reload iptables

    或者 

    service iptables reload

    4、重启 iptables 服务

    systemctl restart iptables

    或者

    service iptables restart

    5、查看 iptables 状态

    systemctl status iptables

    或者

    service iptables status
  • 相关阅读:
    关于MySQL死锁
    随手一记,maven打包
    js生成带logo的二维码
    java生成带logo的二维码
    关于网页中文本域高度自动适应问题,参考微信回复
    从git上拉下来的严选weex项目demo
    补装老版本的Java SE
    新MBP使用git命令时启用xcode的终端log
    电脑出现“损坏的图像”窗口提示dll没有被指定在Windows上运行如何解决
    不同浏览器隐藏默认表单样式
  • 原文地址:https://www.cnblogs.com/miracle-luna/p/13718017.html
Copyright © 2011-2022 走看看