0

I want to build a program in Python, using Scapy to count how many times SYN packet is received. How do I find only the first SYN received in the 3-way handshake?

Omer Paz
  • 21
  • 8

1 Answers1

0

You can check the flag manually. Take a look at this link. The flag as 0x02 is what you want.

zzy
  • 751
  • 1
  • 13
  • 25