2

A security auditor has done a vulnerability scan of our network and found that one of our server has returned an TCP timestamp response such that the scanner (Nmap) is able to guess the uptime of the server.

Does this constitute a real threat and should I be concerned? Sometimes, the scanner can guess wrongly...

Pang Ser Lark
  • 1,929
  • 2
  • 16
  • 26
  • ICMP? Are you talking about [ICMP type 13 timestamps](http://www.networksorcery.com/enp/protocol/icmp/msg13.htm)? It reads like they only give milli-seconds count past the most recent midnight. In that case they could not really be used to guess uptime. Are you rather talking about [TCP timestamps](http://www.exploresecurity.com/testing-for-tcp-ip-timestamps/)? They can be used by Nmap to estimate uptime. – StackzOfZtuff Sep 11 '15 at 13:31
  • Hi, sorry it's TCP timestamp. I have amended – Pang Ser Lark Sep 14 '15 at 09:46

1 Answers1

1

one of our server has returned a icmp time stamp response such that the scanner (nmap) is able to guess the uptime of the server. Does this constitute a real threat and should I be concerned?

It is an informational threat. It allows an attacker to gather information that may be useful in determining what other attacks might work. For example, if nmap can tell me that it looks like a Centos OS and it has an uptime of 60 days, then I I know that any kernel security update packages released in the last two months have not been installed and activated. As a result, I may be able to determine which attacks against that system are likely to work.

For an internal server, you should only be mildly concerned. For an Internet facing server, you should be slightly more concerned, and should limit ICMP access to that server as a matter of best practices. But this is not a major concern in either scenario.

In any case, if the OS vendor has a patch or a configuration workaround, you should apply it - no reason not to, and it might even help.

For a minor issue like this, the largest concern is usually placating your auditor. If this is the biggest thing they find, you're doing well!

gowenfawr
  • 71,975
  • 17
  • 161
  • 198