Insanitree

Results 3 comments of Insanitree

I'm working on fixing this myself, but I'm not familiar with Scapy. It appears we need two steps to a solution. First step is properly calculating the length of each...

Step 1: Properly calculate the length of the PDU using: `length_from=lambda pkt: pkt.byteCount` Step 2: Extract PDU padding with ``` def extract_padding(self, s): pay = s[:self.byteCount] pad = s[self.byteCount:] return...

I have run and passed the unit tests for this module. I intend to expand them in lieu of further guidance. I have not contributed to an open source project....