1
我想單獨解析TCP包,而不使用PCAPLib自己的數據結構。出於這個原因,我需要獲取TCP頭的字節陣列。從pipcapfile中的TCP頭部獲取ByteArray
from pcapfile import savefile
capfile = open('delta_capture.pcap')
sf = savefile.load_savefile(capfile)
for packet in sf.packets:
print packet.timestamp
print packet.packet
print packet.header # Returns a library object, I need the bytearray instead, as I want to use my own data structure and parse.
capfile.close()
我試圖調試和inspectiong對象結構,但不能看到其中實際字節存儲在TCP報頭的任何對象。
爲變量「包」調試結果截圖:
它甚至有可能在這個圖書館這樣做呢?