使用python脚本将Pcap文件转换为文本

时间:2019-08-02 10:18:30

标签: javascript python python-3.x python-requests pcap

我使用以下代码使用给定的列将pcap file转换为text file。输出文本文件。代码没有给出任何错误,它给出了输出,但是却给出了没有任何数据的空白。您能帮忙找到错误吗

from scapy.all import *
data = "Emotet-infection-with-Gootkit.pcap"
a = rdpcap(data)
os.system("tshark  -T fields -e _ws.col.Info -e http -e frame.time -e  "
      "data.data -w Emotet-infection-with-Gootkit.pcap > Emotet-infection-with-Gootkit.txt -c 1000")
os.system("tshark -r Emotet-infection-with-Gootkit.pcap -Y http -w Emotet-infection-with-Gootkit.pcap")
sessions = a.sessions()
i = 1
for session in sessions:
 http_payload = ""

0 个答案:

没有答案