user3663896
user3663896

Reputation: 9

TCP fields with SCAPY

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

Answers (1)

Luc
Luc

Reputation: 174

On a TCP packet you can access the following fields: enter image description here

like print(packet.options) and so on

Upvotes: 2

Related Questions