比较 TCP 校验和与 Scapy?
我试图在使用 Scapy 作为嗅探器时识别校验和不正确的数据包。我可以通过访问获取原始校验和
packet[TCP].chksum
,然后使用它删除它,
del packet[TCP].chksum
我想做一些类似的事情,
if(originalChecksum == recomputedChecksum):
# Checksum is valid
我了解使用 show2() 重新计算校验和,但是无论如何都可以访问此属性以与原始值进行比较?调用 show2() 只是显示校验和,并且不会设置数据包中的任何值。
感谢您的任何澄清
I am trying to identify packets with incorrect checksums while using Scapy as a sniffer. I am able to get the original checksum by accessing
packet[TCP].chksum
I then remove this using
del packet[TCP].chksum
I would like to do something like
if(originalChecksum == recomputedChecksum):
# Checksum is valid
I understand that using show2() recomputes the checksum, but is there anyway to access this attribute for comparing back to the original? Calling show2() simply displays what the checksum would be, and does not set any of the values in the packet.
Thanks for any clarification
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使 Scapy 重新计算所有字段,请通过将数据包转储到字符串来组装数据包,然后解析该字符串。
to make Scapy recompute all fields, assemble the packet by dumping it to a string, then parse the string.