gpt4 book ai didi

python - IP 原型(prototype)字段编号到字符串

转载 作者:行者123 更新时间:2023-12-01 04:06:50 25 4
gpt4 key购买 nike

使用 scapy,如何从数据包原始字段上的数字获取带有 IP 协议(protocol)名称的字符串?

例如,将 6 转换为“TCP”。

最佳答案

Scapy 很棒,但文档还有很多不足之处。这有效:

from scapy.all import *

def ip_proto(pkt):
proto_field = pkt.get_field('proto')
return proto_field.i2s[pkt.proto]

x = IP() / TCP()
print ip_proto(x)

关于python - IP 原型(prototype)字段编号到字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35444280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com