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

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.