Scapy is a powerful interactive packet manipulation tool, packet generator, network scanner, network discovery, packet sniffer, etc. It specializes in forging and decoding packets in almost any protocol. Scapy uses the python interpreter as a command board. That means that you can use directly ...
0
votes
0answers
10 views
Low level management of an HTTP connection in Scapy
I'm trying to build a simple Scapy script which manually manages 3-way-handshake, makes an HTTP GET request (by sending a single packet) to a web server and manually manages response packets (I need ...
0
votes
1answer
24 views
print scapy sniff output to file
I have created a sniffer in scapy and I want the packets captured by scapy to be written onto a file for further analysis?
def sniffer(ip):
filter_str = "icmp and host " + ip
...
0
votes
0answers
22 views
Networking with Python: No response from IP Phone
I'm an Automation Developer and lately I've taken it upon myself to control an IP Phone on my desk (Cisco 7940).
I have a third party application that can control the IP phone with SCCP (Skinny) ...
1
vote
0answers
31 views
An issue about IPv6 address in Scapy
I'm using scapy in python2.6 and met an issue about the IPv6 address:
from scapy.all import *
p = IPv6(src = '1:0:0:1::1', dst = '2:0:0:2::2')
print p.src, p.dst
p.show()
it seems that scapy ...
3
votes
1answer
270 views
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):
from scapy.all import *
m_iface = "wlan0"
m_dst = "192.168.0.1"
...
0
votes
0answers
37 views
Replicating and modifying EAPOL packets using Scapy
For a semester project (802.1x security + scapy has to be used), I want to create an exercise where I take the information from a captured 4-way handshake and inject the information from the 2 packets ...
-1
votes
0answers
38 views
Scapy running from PHP [closed]
I have a problem with using Scapy with PHP. As Scapy is Python native programme that cannot be run directly from command line (I mean like tshark etc..). I need to run Scapy commands like sniff(), ...
0
votes
1answer
112 views
Pcap file replay based on the packet timestamp using scapy
I have one pcap file (~90M), and i want to replay that file. I came across scapy and it provides the way to read the pcap file and replay it. I tried following two ways to replay the packets
...
1
vote
0answers
136 views
How to inject 802.11 frames with Scapy on FreeBSD
On a FreeBSD 8.1 machine I am trying to inject 802.11 frames with Scapy 2.2.0 as described in the documentation's example: http://www.secdev.org/projects/scapy/doc/usage.html#wireless-frame-injection. ...
1
vote
1answer
28 views
How to efficiently determine application generating packets
While working on a research project, I have been able to semi-successfully match outbound packets to their source application by running psutil's get_connections and matching remote addresses with a ...
1
vote
0answers
37 views
Scapy - how to get the statistics?
I need to write a network sniffer and I have decided to use python to do it. I know that the performances will not be the best, and for this kind of software I should use c or c++, but a good ...
0
votes
2answers
45 views
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 of fields is predefined, say:
fieldsToCompare = ['tos', 'id', 'len', 'proto'] #IP header
Normally I ...
0
votes
1answer
58 views
Using Scapy to build a Probe Request Request
How can I use scapy to send a IEEE802.11 Probe Request? I have used the following code:
srp(Dot11(type=0,subtype=4,addr1 = '00:23:68:a3:28:fc', addr2 = '8c:a9:82:3a:94:5e'), iface = 'wlan0')
the ...
0
votes
2answers
32 views
Making IPv6 update plen field according to ICMPv6 type on Scapy
In my program I use scapy to create/parse packets, but the actual program is in C++. Since the users only needed the first few fields of ICMPv6 which are the same for all ICMPv6 packets, I created a ...
0
votes
1answer
131 views
Add length prefix to DNS request using TCP and Scapy
In the RFC 1035 about DNS, it's written :
4.2.2. TCP usage
Messages sent over TCP connections use server port 53 (decimal). The
message is prefixed with a two byte length field which ...
0
votes
1answer
79 views
Printing Scapy output to wxPython Text Controller
Thank you for taking time to look at my question.
I am learning the ropes of wxPython and I want to take a working program that outputs to terminal and give it a face lift. With Scapy, I am sniffing ...
1
vote
1answer
219 views
Scapy DNS request malformed only with TCP
I use scapy and python to build my DNS request. No problem for UDP request but when I want to use TCP (with exactly the same request that I use with UDP), Wireshark say that my DNS request are ...
3
votes
1answer
91 views
'haslayer' function not working in scapy-python
I'm trying to write a simple code that detect IP source address for ICMP packet in scapy, the problem is haslayer function looks not returning anything.
from scapy.all import *
while 1:
pkt = ...
2
votes
1answer
100 views
Modify Map Layers with Python & PyKML
I am starting my first major Python/Python Scapy project and I need some guidance. I have found resources like PyKML and Google Earth COM API but I do not know which will be best used to implement my ...
0
votes
0answers
24 views
configure libdnet under Cygwin+MinGW [duplicate]
I'm trying to use scapy on win python2.7.
When I configure libdnet under Cygwin+MinGW,there is a problem that checking for Python... configure: error: need MingW32 package to build under Cygwin.
Can ...
0
votes
0answers
114 views
Python Scapy nfqueue
Im writing python code to interact with iptables nfqueue on linux systems. I am able to retrieve the queue packets and modify them as i wish however i am having trouble accepting them through the ...
0
votes
1answer
151 views
Scapy send function without output
Does anyone know how to send a packet using scapy and not receive any output?
This is the command:
send(packet,iface="eth0")
This is the output
Sent 1 packets.
I'm trying to get it not to ...
0
votes
1answer
131 views
Python Scapy not sniffing
When I run the script, scapy does not listen on the interface, it just print out this error:
Traceback (most recent call last):
File "keylogger.py", line 91, in
...
0
votes
1answer
67 views
NameError : name 'ip' is not defined
after installing scapy in windows when I run the "scapy" command from command line to check if scapy is installed succesfully
it gives the following lines:
welcome to Scapy(2.1.1-dev)
...
0
votes
1answer
278 views
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 random
import socket
import dns.query
but wen i compile it from command line it ...
1
vote
1answer
311 views
Accessing 802.11 Wireless Management Frames from Python
From Python on Linux I would like to sniff 802.11 management 'probe-request' frames. This is possible from Scapy like so:
# -*- coding: utf-8 -*-
from scapy.all import *
def proc(p):
if ( ...
0
votes
1answer
122 views
Increment PCAP timestamp values
Scapy has the capability to modify timestamps on a per packet basis therefore am wondering why might be the best way to modify the the timestamps on a number of packets in a PCAP by specifying a start ...
0
votes
0answers
57 views
Scapy: error when recomputing checksum
Any idea what this error might be caused by?
Traceback (most recent call last):
File "/home/myProject/myScript.py", line 400, in aFunction
packets = map(recomputeChecksumOnePkt, packets)
...
0
votes
0answers
81 views
Crafting a custom bluetooth packet with Scapy
I'm trying to craft a custom Bluetooth packet with Scapy (2.2.0). I've tried using a few of the lower-layer protocols that are mentioned on Wikipedia, and I haven't had any success.
For exaple:
...
0
votes
0answers
38 views
Adding and Removing from a Set in Python with Scapy
I've developed a script in Python 2.7 however I'm looking to amend it slightly for my needs. Basically the script as it stands scans for wireless devices and when it detects a device, it compares it ...
0
votes
2answers
176 views
tcpreplay removing IP checksums?
I have a packet trace that I forge with scapy and resend with tcpreplay. I recompute IP and transport-layer checksums with Scapy, save the packets to disk on pcap file and call tcpreplay on it.
By ...
0
votes
0answers
224 views
Network Packet Sniffing using Scapy (Python)
I am currently in the process of developing a network monitoring tool, which can be used to capture (sniff) and decode packets over a network, using Python-Scapy. Currently, I have created a ‘decoder’ ...
0
votes
1answer
235 views
Error Importing scapy into Python interpreter on OSX [MacPorts install]
I installed scapy via MacPorts as recommended here in the official scapy documentation: http://www.secdev.org/projects/scapy/doc/installation.html#mac-os-x
It works just fine when I run scapy from ...
0
votes
1answer
105 views
Specifying packet length with scapy
I'm trying to send a specific packet size (100 bytes) with scapy but cant seem to get it.
I'm using this to start.
sr(IP(dst="192.168.1.1")/TCP(dport=443))
Looking at the docs / help I cant tell ...
0
votes
0answers
78 views
can i only use scapy in interactive mode?
i just want to say
from scapy import *
target = "42.42.42.42"
packet = IP()/UDP()
packet.dst = target
del pak[IP].chksum
del pak[TCP].chksum
pak.show2()
but "IP()" and "UDP()" are not defined
...
0
votes
1answer
152 views
Why do I get “permission denied” when trying to start Python Scapy loopback interface?
I'm new in network(
I'm trying start loop back interface for ICMP and what I got:
Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on
win32
Type "help", "copyright", ...
0
votes
1answer
153 views
Scapy: save to disk the output of sr
In Scapy, I want to save to disk the output of sr for later analysis.
ans, unans = sr(somePackets)
While unans presents no problem with scapy's built-in function wrpcap, I can't seem to be able to ...
0
votes
2answers
204 views
Speed up python loop processing packets
I spend the whole day waiting for a loop to exit without hope!. I know that python is not so efficient when it comes to performance as such I would really appreciate any speed-up suggestions to my ...
0
votes
1answer
104 views
Error trying to use PyPy and Scapy to sniff wireless adapters
I am attempting to use PyPy and Scapy to sniff on a wireless adapter. I'm on Ubuntu Linux, so I put my card into monitor mode using airmon-ng, open up a REPL, and type the following (after importing ...
2
votes
0answers
125 views
OSError: Result too large
I'am playing around with scapy but i cant get it to work. I tried different code's but all gave me the same output:
Traceback (most recent call last):
File "<module1>", line 7, in ...
1
vote
2answers
309 views
Sniffing UDP packets using scapy in Mac
I am trying to sniff UDP packets using scapy sniff function, I send the packets in the Looback interface, the sending code is simple as follows:
from socket import *
IPv4 = "127.0.0.1"
Port = 45943
...
0
votes
2answers
267 views
how to send one udp packet multiple time in scapy ?
How to send one udp packet multiple time in scapy ? I need to send,an valid udp packet more than one times. Is there any specific method or function in scapy ?
0
votes
0answers
136 views
rebuilding network packets in scapy
from scapy.all import *
pkts = rdpcap("pic.cap")
for pkt in pkts:
xx = pkt.sprintf("{Raw:%Raw.load%\n}")
temp = str(xx.encode('hex'))
temp2 = temp2 + temp
How can I rebuild the network ...
0
votes
1answer
173 views
Filter a PCAP file from packet ISO/OSI layer
I need to split a PCAP file in two different files: the first one should include all (and only) the packets directed to the application layer of the ISO/OSI model, while the second one includes all ...
-4
votes
1answer
69 views
python string network jpeg [closed]
can anyone tell me why this code does not work??
it has been annoying me for hours, in theory it should carve out a jpeg from a network data packet.
import struct
from scapy.all import *
pkts = ...
0
votes
1answer
61 views
how to detect firewall with scapy
I open a port 4000 on computer A and send a packet from another remote computer B
but A didn't get the packet, I think maybe the enterprise firewall filtered the packet
how can I detect this?
are ...
1
vote
1answer
143 views
Ip list from captured pcap python
I'm trying to sort a previously-captured Pcap file, I want to build a list of ip source and destinations, so I can run calculation against them.
I have attempted to search the pcap file using a ...
1
vote
1answer
57 views
show2() method won't display sub classes
I'm implementing GTPv2 in scapy. The current definition is as follows:
class _GTPv2IE_HDR(Packet):
fields_desc = [ ByteEnumField("type", None, gtpv2_ie_types),
...
1
vote
1answer
166 views
Scapy waiting for multiple packets
In order to perform a HTTP GET, I need to send a packet (the GET / HTTP/1.0\n\n) and wait for 3 packets:
The ACK of my GET
The GET answer: HTTP/1.0 200 OK
and the FIN ACK of the transmission
I ...
0
votes
1answer
290 views
Read .enc or other capture file formats in Scapy Python
I am currently working with Scapy and encounter the error:
NameError: global name 'Scapy_Exception' is not defined
I have 2 options:
To either catch the error and convert the capture file into pcap ...

