pcapFile=rdpcap(pcap)
for pkt in pcapFile:
try:
if pkt[IP].src=='198.18.32.1' and pkt[IP].dst=='198.18.50.97' and pkt[IP].len>=400:
data= pkt[Raw].load
(Pdb) pkt[Raw]
<Raw load='\x00\xab\x0b(\x00\x00\x01\xdf\xab(\x05\x04\x03\x05\x00\x00\x00S\x03\x0020181014T121200.0000000....
在wireshark 中,00 ab 0b 位是28,但我从scapy 得到的是a (.How to get the value 28 from scapy?
精慕HU
相关分类