Remediation Steps
Follow the steps below to remediate this finding on Linux (RHEL/CentOS/AlmaLinux).
Block ICMP timestamp requests using firewalld or iptables.
With firewalld:
sudo firewall-cmd --permanent --add-rich-rule='rule protocol value="icmp" icmp-type name="timestamp-request" drop' sudo firewall-cmd --reloadWith iptables:
sudo iptables -A INPUT -p icmp --icmp-type timestamp-request -j DROP sudo service iptables save