Top "Scapy" questions

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

Running Scapy on Windows with Python 2.7

I like to use Scapy with Python v2.7 under Windows 7. How can I install the required module pypcap for Python 2.7? …

python windows python-2.7 scapy
How can I filter a pcap file by specific protocol using python?

I have some pcap files and I want to filter by protocol, i.e., if I want to filter by …

python filter pcap scapy
Scapy packet sniffer triggering an action up on each sniffed packet

I'm using scapy with python to sniff live traffic. capture=sniff(iface="<My Interface>", filter="tcp") But this …

python networking scapy packet-sniffers
Python-Scapy or the like-How can I create an HTTP GET request at the packet level

I am a moderate programmer, just getting into network programming. As an attempt to improve my understanding of networks in …

python http networking get scapy
Sending packets from pcap with changed src/dst in scapy

I am trying to send a previously recorded traffic (captured in pcap format) with scapy. Currently I am stuck at …

python pcap scapy
Scapy.all import * does not work

So, I wrote a little script in Ubuntu for scapy. #!/usr/bin/env python import sys #from scapy.all import * …

python ubuntu scapy
Scapy install issues. Nothing seems to actually be installed?

I have an apple computer running Leopard with python 2.6. I downloaded the latest version of scapy and ran "python setup.…

python installation scapy
Get TCP Flags with Scapy

I'm parsing a PCAP file and I need to extract TCP flags (SYN, ACK, PSH, URG, ...). I'm using the packet[…

python tcp packet packet-capture scapy
Python scapy import error

If I include following line in my python source file from scapy.all import * I get this error from scapy.…

python scapy
Fetch source address and port number of packet - Scapy script

I am doing a sniffing of the network and trying to get ip address and port number on every tcp …

networking python-2.7 tcp scapy