-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
Description
Scary version: scapy-2.4.0.dev149
Python version: Python 3.6.5
OS: Ubuntu 16.04.03 LTS
I try to read the attached pcap file using Pcapreader(), but Pcapreader() does not work after read a packet which timestamp is 1523958716.205101, and memory usage increases, finally, the process forcibly terminates.
from scapy.all import *
with PcapReader('test.pcap') as pkts:
for pkt in pkts:
print(str(pkt.time) + ': ' + str(len(pkt)))
output
1523958716.093239: 82
1523958716.14647: 82
1523958716.159972: 98
1523958716.18894: 90
1523958716.201178: 90
1523958716.205101: 90
I also try to read the attached pcap file using dpkt and dpkt succeed in read the file.
import dpkt
with open('test.pcap', "rb") as f:
pcr = dpkt.pcap.Reader(f)
for t, buf in pcr:
print(str(t) + ': ' + str(len(buf)))
eth = dpkt.ethernet.Ethernet(buf)
ip = eth.data
src = ip.src
dst = ip.dst
src_a = socket.inet_ntoa(src)
dst_a = socket.inet_ntoa(dst)
print("Sorce IP :%s" % src_a)
print("Dest IP :%s" % dst_a)
output
1523958716.093239: 82
Sorce IP :210.196.129.140
Dest IP :8.8.8.8
1523958716.14647: 82
Sorce IP :210.196.129.140
Dest IP :8.8.8.8
1523958716.159972: 98
Sorce IP :8.8.8.8
Dest IP :210.196.129.140
1523958716.18894: 90
Sorce IP :210.196.129.140
Dest IP :13.113.26.230
1523958716.201178: 90
Sorce IP :210.196.129.140
Dest IP :13.113.26.230
1523958716.205101: 90
Sorce IP :210.196.129.140
Dest IP :13.113.26.230
1523958716.209078: 90
Sorce IP :210.196.129.140
Dest IP :13.113.26.230
1523958716.213085: 90
Sorce IP :210.196.129.140
Dest IP :13.113.26.230
1523958716.453802: 114
Sorce IP :121.40.147.12
Dest IP :210.196.129.140
Reactions are currently unavailable