ICMP Timestamp Request Remote Date Disclosure

Jay Tee 15 Reputation points
2025-03-24T22:52:46.7833333+00:00

How to fix ("ICMP Timestamp Request Remote Date Disclosure") for Windows servers

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
4,030 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Daisy Zhou 32,416 Reputation points Microsoft External Staff
    2025-03-26T01:24:17.8166667+00:00

    Hello Jay Tee,

    Thank you for posting in Q&A forum.

    To address the "ICMP Timestamp Request Remote Date Disclosure" issue on Windows Server 2019, you can follow these steps:

    1. You can disable ICMP Timestamp Reply by modifying the registry. Please back up the registry before making any changes. Here are the steps:

    • Open the Registry Editor (regedit).

    • Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters.

    • Create a new DWORD value named DisableICMPRedirect and set its value to 1.

    • Restart the server for the changes to take effect.

    1. You can also use Windows Firewall to block ICMP Timestamp requests and replies:

    • Open the Windows Firewall with Advanced Security.

    • Create a new inbound rule to block ICMPv4 and ICMPv6 Echo Request messages.

    • Create a new outbound rule to block ICMPv4 and ICMPv6 Echo Reply messages.

    I hope the information above is helpful.

    If you have any questions or concerns, please feel free to let us know.

    Best Regards,

    Daisy Zhou

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    1 person found this answer helpful.

  2. Alex Burlachenko 4,060 Reputation points
    2025-03-27T09:37:42.0266667+00:00

    Hi Jay Tee,

    Firewall rules take effect immediately after creation/modification.

    No system restart is required for Windows Firewall changes to apply.

    I would like to add option 3

    # Create firewall rule to block ICMP Timestamp requests
    New-NetFirewallRule -DisplayName "Block ICMP Timestamp" -Direction Inbound -Protocol ICMPv4 -IcmpType 13 -Action Block -Enabled True
    

    Best regards,

    Alex

    P.S. If my answer help to you, please Accept my answer

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.