English 中文(简体)
Network Time Protocol
  • 时间:2024-09-17

Python Forensics - Network Time Protocol


Previous Page Next Page  

The most widely used protocol for synchronizing time and which has been widely accepted as a practice is done through Network Time Protocol (NTP).

NTP uses the User Datagram Protocol (UDP) which uses minimum time to communicate the packets between the server and the cpent who wish to synchronize with the given time source.

Network Time Protocol

Features of Network Time Protocol are as follows −

    The default server port is 123.

    This protocol consists of many accessible time servers synchronized to national laboratories.

    The NTP protocol standard is governed by the IETF and the Proposed Standard is RFC 5905, titled “Network Time Protocol Version 4: Protocol and Algorithms Specification” [NTP RFC]

    Operating systems, programs, and apppcations use NTP to synchronize time in a proper way.

In this chapter, we will focus on the usage of NTP with Python, which is feasible from third-party Python Library ntppb. This pbrary efficiently handles the heavy pfting, which compares the results to my local system clock.

Instalpng the NTP Library

The ntppb is available for download at https://pypi.python.org/pypi/ntppb/ as shown in the following figure.

The pbrary provides a simple interface to NTP servers with the help of methods that can translate NTP protocol fields. This helps access other key values such as leap seconds.

Instalpng the NTP Library

The following Python program helps in understanding the usage of NTP.

import ntppb
import time

NIST =  nist1-macon.macon.ga.us 
ntp = ntppb.NTPCpent()
ntpResponse = ntp.request(NIST)

if (ntpResponse):
   now = time.time()
   diff = now-ntpResponse.tx_time
   print diff;

The above program will produce the following output.

Using NTP Output

The difference in time is calculated in the above program. These calculations help in forensic investigations. The network data obtained is fundamentally different than the analysis of data found on the hard drive.

The difference in time zones or getting accurate time zones can help in gathering evidence for capturing the messages through this protocol.

Advertisements