Reputation: 9
i'm trying to extract some information from networking connections using SCAPY. I need to extract some fields from TCP packet header, in fact Receiver Windows Field (WIN), Retransmission Time Out field (RTO), Max Segment field (MSS) and the Options field (OPT).
I'm a bit lost. I'm using Python3 and SCAPY 2.4.3
Thank you
Upvotes: 0
Views: 1196
Reputation: 174
On a TCP packet you can access the following fields:
like print(packet.options)
and so on
Upvotes: 2