有没有一种有效的方法来获取pyshark中的字段偏移

时间:2019-02-28 10:26:45

标签: python packet pyshark

是否有一种有效的方法来获取用pyshark捕获的数据包中某个字段的偏移量? 例如,我需要获取整个数据包中或数据包中某些层头中的源IP的偏移量。有可能吗?

1 个答案:

答案 0 :(得分:0)

我能够解决我的问题。这是示例代码:

import pyshark

packets = pyshark.FileCapture(input_file=pcap_file_dir)
print(int(packets[0].ip.src.pos)) # Prints the offset of source IP