Top "Scapy" questions

Scapy is a network packet manipulation tool for use with Python.

Scapy PcapReader and packets time

I'm reading a PCAP file using Scapy using a script such as the (semplified) following one: #! /usr/bin/env python …

python capture pcap packet-capture scapy
Get info string from scapy packet

I am using scapy 2.3.1-dev non-interactively (i.e. as a library) in a tool I am building. I would like …

python python-2.7 scapy
scapy get packet's arrivals time

Is there a way to get the packet's arrivals time using scapy? Using scapy to read the pcap file and …

python packet-sniffers scapy
sniff traffic on a particular port using scapy

Ok so I have client and a server code. The server code looks like this : import socket import sys HOST = …

python sockets scapy packet-sniffers
Scapy fails to sniff packets when using multiple threads

I'll try to demonstrate my problem with a simplified example. Following is a very simple (single threaded) packet sniffer (ICMP): …

python packet-capture scapy
Python: access structure field through its name in a string

In Scapy, I want to compare a number of header fields between any two packets a and b. This list …

python ip structure field scapy
Flexible traffic generation with scapy

I know questions like this have been asked plenty of times before, but I think this is subtley different. I …

python generator traffic scapy
Scapy SYN send on our own IP address

I tried to send SYN packets on my local network and monitoring them with Wireshark and everything works just fine, …

python generator send packet scapy
Scapy packet sent cannot be received

I'm trying to send UDP Packets with scapy with the following command: >> send(IP(dst="127.0.0.1",src="111.111.111.111")/UDP(dport=5005)/"…

python sockets networking packet scapy
import error: no module named dns.query

i am trying to execute a python code in windows... the code containds the following lines: from scapy import * import …

python scapy