摘要:
1、使用wireshark查看pcap文件,一个没有vlan,一个有vlan 2、使用scapy查看有vlan的报文 可以看到Ether层type=VLAN,vlan层为<Dot1Q prio=0 id=0 vlan=10 type=IPv4 3、使用scapy编辑没有vlan的文件的第4个报文 f 阅读全文
摘要:
1、使用wireshark打开pcap文件,查看源ip为192.168.5.59。 2、使用scapy编辑pcap文件。 from scapy.all import * packets = rdpcap("0x534d.pcap") # 打开pcap文件 print(len(packets)) # 阅读全文