.. highlight:: sh
*************************
Download and Installation
*************************
Overview
========
0. Install *Python 3.x*.
1. Install *Scapy* using pip or by cloning/installing from git.
2. (For non-Linux platforms): Install *libpcap and libdnet* and their Python wrappers.
3. (Optional): Install *additional software* for special features.
4. Run Scapy with root priviledges.
Each of these steps can be done in a different way dependent on your platform and on the version of Scapy you want to use.
This document is for scapy3k. It requires python 3.x. See `original scapy homepage ` for Scapy v2.x or earlier.
.. note::
In scapy3k and Scapy v2.x use ``from scapy.all import *`` instead of ``from scapy import *``.
Installing scapy3k
=====================
The following steps describe how to install (or update) Scapy itself.
Dependent on your platform, some additional libraries might have to be installed to make it actually work.
So please also have a look at the platform specific chapters on how to install those requirements.
.. note::
The following steps apply to Unix-like operating systems (Linux, BSD, Mac OS X).
Windows, currently is under development.
Make sure you have `Python `_ installed before you go on. Depending on your system you may have to use python3 and pip3 or python and pip for python version 3.x.
Latest release
--------------
The easiest way to install the latest scapy3k package is using `pip `_.
$ pip3 install scapy-python3
Current development version
----------------------------
Clone `GitHub repository `_ to a temporary directory and install it in the standard `distutils `_ way::
$ cd /tmp
$ git clone https://github.com/phaethon/scapy
$ cd scapy
$ sudo python3 setup.py install
.. index::
single: git, repository
If you always want the latest version with all new features and bugfixes, use Scapy's GitHub repository:
1. Install `git `_ version control system. For example, on Debian/Ubuntu use::
$ sudo apt-get install git
2. Check out a clone of Scapy's repository::
$ git clone https://github.com/phaethon/scapy
3. Install Scapy in the standard distutils way::
$ cd scapy
$ sudo python3 setup.py install
Then you can always update to the latest version::
$ git pull
$ sudo python3 setup.py install
Optional software for special features
======================================
* WEP decryption. ``unwep()`` needs `cryptography `_. Example using a `Weplap test file `_:
.. code-block:: python
>>> enc=rdpcap("weplab-64bit-AA-managed.pcap")
>>> enc.show()
>>> enc[0]
>>> conf.wepkey=b"AA\x00\x00\x00"
>>> dec=Dot11PacketList(enc).toEthernet()
>>> dec.show()
>>> dec[0]
* `ipython `_. For interactive sessions using ipython can be great advantage. Install using pip3 or from your package manager
* `Graphviz `_. For some visualizations, e.g. traceroute graph, dot is required on the PATH
* `Matplotlib `_. Required for interactive plot/graph viewing.
* `Networkx `_. Conversations can be converted to Networkx graph if library is present.
* `PyX `_. To create PostScript, PDF and SVG files.
* `LaTeX `_. To create PostScript and PDF files.
Platform-specific instructions
==============================
Linux native
------------
Scapy can run natively on Linux. I does not require libdnet and libpcap.
* Install python3 from your package manager if it is not already present
* Install `tcpdump `_ and make sure it is in the $PATH. (It's only used to compile BPF filters (``-ddd option``))
* Make sure your kernel has Packet sockets selected (``CONFIG_PACKET``)
* If your kernel is < 2.6, make sure that Socket filtering is selected ``CONFIG_FILTER``)
Debian/Ubuntu
-------------
Just use the standard packages::
$ sudo apt-get install tcpdump python3-crypto ipython3
Mac OS X
--------
This section needs updating. In general installing python3, pip for python3, libpcap, libdnet, scapy3k using pip package scapy-python3 should do the job. Corrections are welcome...
Windows
-------
Scapy works on Windows 8/2012 and newer version. Unlike earlier versions libdnet is not required. Testing is being done on following configuration: Windows 10/Anaconda 3.5/WinPcap 4.1.3
On Windows 7 (and possibly earlier) scapy can be used for offline packet crafting/dissection. Sniffing and sending requires manual setting of network interface information and routing as corresponding powershell cmdlets used to gather this information are not working on Windows 7.