ICMP Timestamp Request Remote Date Disclosure

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

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

Windows for business | Windows Server | User experience | Other

Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Alex Burlachenko 25,120 Reputation points MVP Volunteer Moderator
    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

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    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.

    Was this answer helpful?

    1 person found this answer helpful.
  3. michaelho 0 Reputation points
    2026-08-19T03:13:27.91+00:00

    Actually, you don't need a specific rule to block the ICMP Tmestamp Request. The Windows Firewall by default blocks all traffic unless they are allowed by firewall rules. Your server should not have any rules to allow this type of ICMP traffic unless they are added intentionally. The essential things are to enable the Windows Firewall on that server and remove the rules that allow ICMP Timestamp Request (Type 13), if any exist.

    Was this answer helpful?

    0 comments No comments