Remediation Steps
Follow the steps below to remediate this finding on Linux (Debian/Ubuntu).
Block ICMP timestamp requests using iptables or nftables.
With iptables:
sudo iptables -A INPUT -p icmp --icmp-type timestamp-request -j DROP sudo iptables -A OUTPUT -p icmp --icmp-type timestamp-reply -j DROPTo persist across reboots:
sudo apt install iptables-persistent sudo netfilter-persistent saveWith nftables:
nft add rule inet filter input icmp type timestamp-request drop