Disable TCP and ICMP Timestamps
From Whonix
Disable TCP Timestamps[edit]
Introduction[edit]
TCP timestamps [archive] provide protection against wrapped sequence numbers [archive].
The downside of TCP timestamps is adversaries can remotely calculate the system uptime and boot time of the machine and the host's clock down to millisecond precision. These calculated uptimes and boot times can also help to detect hidden network-enabled operating systems, as well as link spoofed IP and MAC addresses together and more. [1] [2]
To prevent this information leaking to an adversary, it is recommended to disable TCP timestamps on any operating systems in use. The less information available to attackers, the better the security.
Kicksecure ™[edit]
Disabled in Kicksecure ™ by default. If using Kicksecure ™ as a host operating system, there is nothing to do. Otherwise, see rest of this page.
Linux[edit]
To temporarily disable TCP timestamps for testing purposes (rather than permanently), see the footnote. [3]
1. Open a terminal (Konsole).
Become root.
sudo su
2. Add the following line to /etc/sysctl.d/tcp_timestamps.conf
net.ipv4.tcp_timestamps = 0
To do that, use the following command.
echo "net.ipv4.tcp_timestamps = 0" > /etc/sysctl.d/tcp_timestamps.conf
3. To apply the sysctl settings without a reboot, run the following command.
sysctl -p /etc/sysctl.d/tcp_timestamps.conf
4. Check if the changes have been properly set.
sysctl -a | grep net.ipv4.tcp_timestamps
If it worked correctly, the system should provide the following output.
net.ipv4.tcp_timestamps = 0
macOS[edit]
Disable the rfc1323 protocol which handles TCP timestamps.
1. To check system-set TCP values, run. [4]
sysctl net.inet.tcp
A value of 1 against net.inet.tcp.rfc1323
indicates it is enabled, while 0 indicates it is disabled.
2. Disable TCP timestamps permanently or temporarily.
To permanently disable TCP timestamps, run. [5] [6]
sudo su
echo net.inet.tcp.rfc1323=0 > /etc/sysctl.conf
To temporarily disable TCP timestamps (until reboot) for testing purposes, run.
sudo sysctl -w net.inet.tcp.rfc1323=0
Qubes[edit]
TCP timestamps are disabled by default in Qubes R3.1 and above. [7]
Windows[edit]
To disable (outgoing [8]) TCP timestamps on Windows, run the following root command. [9]
netsh int tcp set global timestamps=disabled
Disable ICMP Timestamps[edit]
Introduction[edit]
The Internet Control Message Protocol (ICMP) is used by network devices, including routers, to send operational information and error messages such as whether a service is available or if a host/router cannot be reached. Unlike TCP and UDP, it is a network level, not transport layer protocol. Commonly network utilities are based on ICMP messages, such as traceroute and ping. [10]
The ICMP protocol includes timestamps for time synchronization, with the originating timestamp being set to the time (in milliseconds since midnight) since the sender last touched the packet. A timestamp reply is also generated, consisting of the originating timestamp (sent by the sender) as well as a "receive timestamp", which captures when the timestamp was received and a reply sent. [11]
Kicksecure ™[edit]
Disabled in Kicksecure ™ by default. If using Kicksecure ™ as a host operating system, there is nothing to do. Otherwise, see rest of this chapter.
Linux[edit]
ICMP timestamps need to be blocked with the firewall. [12] This is distribution dependent and varies widely as does having a firewall enabled on your specific OS. Be aware that some distributions do not turn on the firewall by default.
There are various ways to block ICMP timestamps on the command line, therefore it is recommended to consult your specific distribution's documentation. [13] The easiest method is to download a GUI front-end (like gufw [archive]), then configure the firewall to silently drop all incoming connections by default, and only allow outgoing traffic from the machine.
macOS[edit]
MacOS systems should have ICMP timestamps disabled by default. This means if the firewall is enabled and "Stealth Mode" is set, the system should not respond to any ICMP requests. Follow these steps to check the system is properly secured: [14]
- Click
Menu
- Select
System Preferences
- Select
Security & Privacy
- Click the
Firewall
tab - Check the firewall is
On
- Click
Firewall Options
- Enable
Stealth Mode
- Click
OK
The "Block all incoming connections" option should also be checked for greater security.
It is also possible to manually change / check the ICMP timestamp status -- refer to the system variable net.inet.icmp.timestamp
in the /etc/sysctl.conf file. [15]
To permanently disable ICMP timestamps, run. [16]
sudo sh -c "echo net.inet.icmp.timestamp=0 >> /etc/sysctl.conf"
OpenBSD[edit]
The easiest solution is to configure the firewall to block incoming and outgoing ICMP packets with ICMP types 13 (timestamp request) and 14 (timestamp response). [17]
Alternatively, set net.inet.icmp.tstamprepl
to 0
(it is enabled by default). In a terminal, run.
sysctl -w net.inet.icmp.tstamprepl=0
Qubes[edit]
ICMP timestamps are disabled by default in Qubes R3.1 and above. [18]
Windows[edit]
The firewall in recent Windows operating systems (Win 10, Win 8/8.1, Win 7) should have ICMP disabled by default. [19]
From the Menu[edit]
The status of ICMP timestamps can be manually checked and changed on Windows systems via the Firewall settings. [20]
Right-click on Start button
→ Select Control Panel
→ Select Windows Firewall
→ Select Advanced Settings tab
The ICMP Settings dialog box should show the ICMP timestamp is disabled: Allow incoming timestamp request
is unchecked. [21]
From the Command Line[edit]
ICMP timestamp responses can be disabled via the netsh command line utility. This is necessary for Vista and earlier Windows versions. [22]
Open a terminal and run this command as root (administrator).
netsh firewall set icmpsetting 13 disable
Outgoing ICMP timestamp responses are now blocked.
References[edit]
- ↑ https://forensicswiki.org/wiki/TCP_timestamps [archive]
- ↑
Quote https://factorable.net/weakkeys12.extended.pdf [archive]
It may also be predictable based on system uptime, which is visible to remote attackers via TCP timestamps.
- ↑
Note: If a permanent solution is desired, skip this temporary option and apply the chapter's main instructions instead.
To dynamically disable TCP timestamping on Linux (Qubes: in the NetVM).
Become root.
sudo su
Disable TCP timestamps.
echo 0 > /proc/sys/net/ipv4/tcp_timestamps
- ↑ https://serverfault.com/questions/216956/how-to-check-tcp-timeout-in-linux-macos [archive]
- ↑ https://macosx.com/threads/slow-tcp-ip-smc-router.9132/ [archive]
- ↑ https://seconfig.sytes.net/blog/p/9201755583327191420/office-where-mac-computers-couldn-t-browse-https-sites [archive]
- ↑ https://github.com/QubesOS/qubes-issues/issues/1344 [archive]
- ↑ https://social.technet.microsoft.com/Forums/en-US/e3867359-15d4-4b41-b453-2fe55a951bb2/how-to-disable-tcp-synack-time-stamps-on-windows-2012-r2-in-2018 [archive]
- ↑ https://hackertarget.com/sample-vulnerability-report/openvas-report-win7.html [archive]
- ↑ https://en.wikipedia.org/wiki/ICMP_Timestamp [archive]
- ↑ https://en.wikipedia.org/wiki/ICMP_Timestamp#Timestamp [archive]
- ↑ Advanced users can of course use IP tables. For example in Debian [archive]:
ipchains -p icmp -s $INTIP/0 13 -i $INTIF -j DENY
andipchains -p icmp -s 0.0.0.0/0 14 -i $EXTIF -j DENY
- ↑ For instance, Debian users [archive] can edit the /etc/systcl.conf file manually and add
net.ipv4.icmp_echo_ignore_all = 1
. - ↑ http://osxdaily.com/2015/11/18/enable-stealth-mode-mac-os-x-firewall/ [archive]
- ↑ https://security.stackexchange.com/questions/46090/why-is-icmp-timestamping-disabled-on-os-x [archive]
- ↑ https://superuser.com/questions/680200/os-x-how-to-make-it-reply-to-icmp-time-stamp-query [archive]
- ↑ https://beyondsecurity.zendesk.com/hc/en-us/articles/203609549--How-can-I-mitigate-ICMP-Timestamp- [archive]
- ↑ https://github.com/QubesOS/qubes-issues/issues/1346 [archive]
- ↑ https://www.sysprobs.com/enable-ping-reply-and-ftp-traffic-in-windows-10-and-server [archive]
- ↑ https://answers.microsoft.com/en-us/windows/forum/windows_7-security/check-icmp-timestamp-response/062ffa99-ffae-4ab0-a328-84371ed46ed8?tab=question&status=AllReplies#tabs [archive]
- ↑ https://msdn.microsoft.com/en-us/library/ms912869%28v=winembedded.5%29.aspx [archive]
- ↑ https://social.technet.microsoft.com/Forums/windows/en-US/219f3dcc-3e5b-4d9b-88ae-137215575c7f/icmp-timestamp-response?forum=w7itprosecurity [archive]
Whonix ™ is Supported by Evolution Host DDoS Protected VPS. Stay private and get your VPS with Bitcoin or Monero.
100px | |
Fosshost | About Advertisements |
Search engines: YaCy | Qwant | ecosia | MetaGer | peekier | Whonix ™ Wiki
Did you know that Whonix ™ could provide protection against backdoors? See Verifiable Builds. Help is wanted and welcomed.
Priority Support | Investors | Professional Support
Whonix ™ | © ENCRYPTED SUPPORT LP | Freedom Software / Open Source (Why?)
The personal opinions of moderators or contributors to the Whonix ™ project do not represent the project as a whole.