The following network dump (PCAP file format) results from the capture of a denial of service attack in the lab:
I would like to extract the time (unix time) and window value (win) and save it to a text file in the following format:
schedule, win
Is it possible with Python?
#!/usr/bin/env python
from scapy.all import *
import dpkt
filename='ataques.pcap'
a = rdpcap(filename)