我正在尝试使用 dpkt 打印 NTP 字段。它运行良好,只是我无法获得像从 tcpdump 获得的输出。例如,在附加的代码中,我无法以人类可读的格式打印 origin_time。我尝试了 binascii 中的功能,但无法正确使用。
我是 dpkt 的新手,任何指针都会很棒。
import dpkt
import socket
def processPcap(iFile):
f = open(iFile)
pcap = dpkt.pcap.Reader(f)
for ts, buf in pcap:
eth = dpkt.ethernet.Ethernet(buf)
ip = eth.data
source = socket.inet_ntoa(ip.src)
destination = socket.inet_ntoa(ip.dst)
udp = ip.data
if ip.p==dpkt.ip.IP_PROTO_UDP:
if udp.dport == 123:
ntp = dpkt.ntp.NTP(udp.data)
print (("Timestamp:%s, Source:%s, Destination:%s, SPort:%s, DPort:%s") % (ts, source, destination, udp.sport, udp.dport))
print ntp.flags
print ntp.delay
print ntp.id
print ntp.dispersion
print ntp.update_time
print ntp.originate_time
f.close()
if __name__ == "__main__":
INPUT = "<inputFile>"
processPcap(INPUT)