比较 TCP 校验和与 Scapy?

发布于 2024-11-19 10:08:26 字数 390 浏览 2 评论 0原文

我试图在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听不够的曲调 2024-11-26 10:08:26

要使 Scapy 重新计算所有字段,请通过将数据包转储到字符串来组装数据包,然后解析该字符串。

originalChecksum=packet['TCP'].chksum
del packet['TCP'].chksum
packet=IP(str(packet))
recomputedChecksum=packet['TCP'].chksum

to make Scapy recompute all fields, assemble the packet by dumping it to a string, then parse the string.

originalChecksum=packet['TCP'].chksum
del packet['TCP'].chksum
packet=IP(str(packet))
recomputedChecksum=packet['TCP'].chksum
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文