IBM Verify

IBM Verify

Join this online user group to communicate across Security product users and IBM experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  ICMP timestamp requests CVE-1999-0524

    Posted Fri April 25, 2025 06:08 AM

    Dear All,

    we have got an ITSec question regarding above mentioned CVE. Our AAC (version 10.0.8.0 + IF2) server has responding :-D such ICMP requests.

    Did you have any idea  / solution for this? Can we simple ignore this "alert"? 



    ------------------------------
    Janos Laszlo Horvath
    ------------------------------


  • 2.  RE: ICMP timestamp requests CVE-1999-0524
    Best Answer

    Posted Mon April 28, 2025 05:50 AM

    Note that CVE-1999-0524 is about two things:  timestamp requests and netmask requests.

    Timestamp requests are a bit of a non-issue, since you can assume NTP is being used, so you "know" what time it is on the machines (to the millisecond) without even asking for it. 

    Netmask requests are problematic since they allow an adversary to map your internal networks, but if you're segmented enough, and the routers/firewalls are dropping the ICMP types 13, 14, 17, and 18, you'll only be able to asks for the netmask from a machine on the same subnet (which already knows the netmask), therefore the response gives no answer that isn't already known.



    ------------------------------
    José Pina Coelho
    IT Specialist at Kyndryl
    ------------------------------



  • 3.  RE: ICMP timestamp requests CVE-1999-0524

    Posted Wed May 21, 2025 05:39 PM

    # Disable responses to timestamp requests
    echo 1 > /proc/sys/net/ipv4/icmp_ignore_bogus_error_responses
    # Or use iptables/nftables:
    iptables -A INPUT -p icmp --icmp-type timestamp-request -j DROP



    ------------------------------
    Jayna Rogers
    ------------------------------



  • 4.  RE: ICMP timestamp requests CVE-1999-0524

    Posted Wed May 21, 2025 06:38 PM

    To add the first to the appliance you'd use the following advanced tuning parameter:
    Key: sysctl.net.ipv4.icmp_ignore_bogus_error_responses

    Value: 1

    This is the entry in the 'iswga/sysctl.txt' file that shows the output of all these System properties:
    net.ipv4.icmp_ignore_bogus_error_responses = 1



    ------------------------------
    JACK YARBOROUGH
    ------------------------------