讀取pcap檔案可以使用scapy.all 模組中的rdpcap方法。例如: from scapy.all import * packets = rdpcap('ssss.pcap') for packet in packets: print ...
確定! 回上一頁