Reputation: 385
How can I filter only TCP SYN segments in Scapy? Could someone give me a simple example, please? I tried hard but I dont know scapy!
Upvotes: 1
Views: 280
Only TCP SYN segments:
tcp[tcpflags] & tcp-syn != 0
Upvotes: 2