ICMP Timestamp Request Remote Date Disclosure This host returns non-standard timestamps (high bit is set) The ICMP timestamps might be in little endian format (not in network format) The remote clock is synchronized with the local clock. How to reso

Jay Tee 30 Reputation points
2025-03-18T20:01:01.1766667+00:00

ICMP Timestamp Request Remote Date Disclosure

This host returns non-standard timestamps (high bit is set)

The ICMP timestamps might be in little endian format (not in network format)

The remote clock is synchronized with the local clock.

How to resolve this or do we have any information if we can restrict on firewall?

Windows for business | Windows Server | User experience | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Oliver Nguyen 410 Reputation points Independent Advisor
    2025-08-11T10:24:58.28+00:00

    Hi Jay Tee,

    Your host’s little-endian timestamp replies leak its system clock. You can eliminate this exposure either at the OS level or in your firewall/router. Below is a structured approach.

    Windows Server • Disable timestamp replies in the registry:

    Run regedit.

    Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters.

    Create DWORD DisableICMPRedirect = 1.

    1. Reboot or restart the TCP/IP stack. • Alternatively, use Windows Firewall: # Block inbound timestamp requests (ICMP type 13) New-NetFirewallRule -DisplayName "Block ICMP Timestamp Req" -Protocol ICMPv4 -IcmpType 13 -Direction Inbound -Action Block # Block outbound timestamp replies (ICMP type 14) New-NetFirewallRule -DisplayName "Block ICMP Timestamp Rep" -Protocol ICMPv4 -IcmpType 14 -Direction Outbound -Action Block

    Now test using hping3 or nping to probe type 13:
    hping3 --icmp --icmp-ts <target_ip>

    If could, please tell me what kind of firewall you are using so I can specify more on the steps to deal with it

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

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

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

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.