Scapy: the Python-based interactive packet manipulation program & library. Supports Python 2 & Python 3.
Go to file
gpotter2 c2ce8dc5d3
Small HTTP session fixes (#4601)
2024-12-03 16:35:18 +01:00
.config Include .1 in zipapp (#4570) 2024-10-16 00:33:17 +02:00
.github ci: run the fuzz target on PRs (#4378) 2024-07-01 20:28:11 +02:00
doc LDAP: add modify/add/delete (#4580) 2024-11-05 09:33:14 +01:00
scapy Small HTTP session fixes (#4601) 2024-12-03 16:35:18 +01:00
test Small HTTP session fixes (#4601) 2024-12-03 16:35:18 +01:00
.appveyor.yml Fix various critical bugs on Windows (#4467) 2024-07-26 00:55:14 +02:00
.git-blame-ignore-revs Create .git-blame-ignore-revs (#4063) 2023-07-10 21:10:06 +02:00
.gitattributes Add .gitattributes encoding 2017-05-31 17:04:19 +02:00
.gitignore Fix Geneve dissection (#3917) 2024-02-06 01:13:06 +01:00
.packit.yml ci: skip OpenLDAP tests on Packit (#4540) 2024-09-28 23:48:49 +02:00
.readthedocs.yml readthedocs: fix renamed extra requirement 2023-11-23 07:54:21 +01:00
.travis.yml Travis cleanup / TunTap fixes / Mypy 3.9 (#3182) 2021-04-24 14:23:39 +02:00
CONTRIBUTING.md Drop six library (third & last batch) (#3857) 2023-04-08 20:20:27 +02:00
LICENSE Add license file 2015-05-13 18:31:50 -07:00
MANIFEST.in Support new build methods (#3958) 2023-04-11 18:21:11 +02:00
README.md Clarify that the DOC is under CC BY-NC-SA 2.5 (#4254) 2024-02-11 14:51:37 +01:00
pyproject.toml Add classifier for Python 3.13 support 2024-09-02 22:46:56 +02:00
run_scapy Remove python3_only and six from UTScapy (#3888) 2023-03-05 00:16:38 +01:00
run_scapy.bat Remove python3_only and six from UTScapy (#3888) 2023-03-05 00:16:38 +01:00
setup.py Restore scapy.1 installation (#4569) 2024-10-14 22:04:48 +02:00
tox.ini Remove 'mock' dependency (#4480) 2024-07-28 20:01:39 +02:00

README.md

Scapy   Scapy

Scapy unit tests AppVeyor Build status Codecov Status Codacy Badge PyPI Version License: GPL v2 Join the chat at https://gitter.im/secdev/scapy

Scapy is a powerful Python-based interactive packet manipulation program and library.

It is able to forge or decode packets of a wide number of protocols, send them on the wire, capture them, store or read them using pcap files, match requests and replies, and much more. It is designed to allow fast packet prototyping by using default values that work.

It can easily handle most classical tasks like scanning, tracerouting, probing, unit tests, attacks or network discovery (it can replace hping, 85% of nmap, arpspoof, arp-sk, arping, tcpdump, wireshark, p0f, etc.). It also performs very well at a lot of other specific tasks that most other tools can't handle, like sending invalid frames, injecting your own 802.11 frames, combining techniques (VLAN hopping+ARP cache poisoning, VoIP decoding on WEP protected channel, ...), etc.

Scapy supports Python 3.7+. It's intended to be cross platform, and runs on many different platforms (Linux, OSX, *BSD, and Windows).

Getting started

Scapy is usable either as a shell or as a library. For further details, please head over to Getting started with Scapy, which is part of the documentation.

Shell demo

Scapy install demo

Scapy can easily be used as an interactive shell to interact with the network. The following example shows how to send an ICMP Echo Request message to github.com, then display the reply source IP address:

sudo ./run_scapy
Welcome to Scapy
>>> p = IP(dst="github.com")/ICMP()
>>> r = sr1(p)
Begin emission:
.Finished to send 1 packets.
*
Received 2 packets, got 1 answers, remaining 0 packets
>>> r[IP].src
'192.30.253.113'

Resources

The documentation contains more advanced use cases, and examples.

Other useful resources:

Installation

Scapy works without any external Python modules on Linux and BSD like operating systems. On Windows, you need to install some mandatory dependencies as described in the documentation.

On most systems, using Scapy is as simple as running the following commands:

git clone https://github.com/secdev/scapy
cd scapy
./run_scapy

To benefit from all Scapy features, such as plotting, you might want to install Python modules, such as matplotlib or cryptography. See the documentation and follow the instructions to install them.

License

Scapy's code, tests and tools are licensed under GPL v2. The documentation (everything unless marked otherwise in doc/, and except the logo) is licensed under CC BY-NC-SA 2.5.

Contributing

Want to contribute? Great! Please take a few minutes to read this!