.. highlight:: sh ************************* Download and Installation ************************* Overview ======== 0. Install *Python 2.5*. 1. Download and install *Scapy*. 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. At the moment, there are two different versions of Scapy: * **Scapy v1.x**. It consists of only one file and works on Python 2.4, so it might be easier to install. Moreover, your OS may already have a specially prepared packages or ports for it. Last version is v1.2.2. * **Scapy v2.x**. The current development version adds several features (e.g. IPv6). It consists of several files packaged in the standard distutils way. Scapy v2 needs Python 2.5. .. note:: In Scapy v2 use ``from scapy.all import *`` instead of ``from scapy import *``. Installing Scapy v2.x ===================== 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). For Windows, see the special chapter below. Make sure you have Python installed before you go on. Latest release -------------- Download the `latest version `_ to a temporary directory and install it in the standard `distutils `_ way:: $ cd /tmp $ wget scapy.net $ unzip scapy-latest.zip $ cd scapy-2.* $ sudo python setup.py install Alternatively, you can make the zip file executable, move it to a directory in your PATH and run it directly:: $ chmod +x scapy-latest.zip $ mv scapy-latest.zip /usr/local/bin/scapy $ sudo scapy Current development version ---------------------------- .. index:: single: Mercurial, repository If you always want the latest version with all new features and bugfixes, use Scapy's Mercurial repository: 1. Install the `Mercurial `_ version control system. For example, on Debian/Ubuntu use:: $ sudo apt-get install mercurial or on OpenBSD:: $ pkg_add mercurial 2. Check out a clone of Scapy's repository:: $ hg clone http://hg.secdev.org/scapy 3. Install Scapy in the standard distutils way:: $ cd scapy $ sudo python setup.py install Then you can always update to the latest version:: $ hg pull $ hg update $ sudo python setup.py install For more information about Mercurial, have a look at the `Mercurial book `_. Installing Scapy v1.2 ===================== As Scapy v1 consists only of one single Python file, installation is easy: Just download the last version and run it with your Python interpreter:: $ wget http://hg.secdev.org/scapy/raw-file/v1.2.0.2/scapy.py $ sudo python scapy.py .. index:: single: scapy-bpf On BSD systems, you can also try the latest version of `Scapy-bpf `_ (`development repository `_). It doesn't need libpcap or libdnet. Optional software for special features ====================================== For some special features you have to install more software. Platform-specific instructions on how to install those packages can be found in the next chapter. Here are the topics involved and some examples that you can use to try if your installation was successful. .. index:: single: plot() * Plotting. ``plot()`` needs `Gnuplot-py `_ which needs `GnuPlot `_ and `NumPy `_. .. code-block:: python >>> p=sniff(count=50) >>> p.plot(lambda x:len(x)) * 2D graphics. ``psdump()`` and ``pdfdump()`` need `PyX `_ which in turn needs a `LaTeX distribution `_. For viewing the PDF and PS files interactively, you also need `Adobe Reader `_ (``acroread``) and `gv `_ (``gv``). .. code-block:: python >>> p=IP()/ICMP() >>> p.pdfdump("test.pdf") * Graphs. ``conversations()`` needs `Grapviz `_ and `ImageMagick `_. .. code-block:: python >>> p=readpcap("myfile.pcap") >>> p.conversations(type="jpg", target="> test.jpg") * 3D graphics. ``trace3D()`` needs `VPython `_. .. code-block:: python >>> a,u=traceroute(["www.python.org", "google.com","slashdot.org"]) >>> a.trace3D() .. index:: single: WEP, unwep() * WEP decryption. ``unwep()`` needs `PyCrypto `_. Example using a `Weplap test file `_: .. code-block:: python >>> enc=rdpcap("weplab-64bit-AA-managed.pcap") >>> enc.show() >>> enc[0] >>> conf.wepkey="AA\x00\x00\x00" >>> dec=Dot11PacketList(enc).toEthernet() >>> dec.show() >>> dec[0] * Fingerprinting. ``nmap_fp()`` needs `Nmap `_. You need an `old version `_ (before v4.23) that still supports first generation fingerprinting. .. code-block:: python >>> load_module("nmap") >>> nmap_fp("192.168.0.1") Begin emission: Finished to send 8 packets. Received 19 packets, got 4 answers, remaining 4 packets (0.88749999999999996, ['Draytek Vigor 2000 ISDN router']) .. index:: single: VOIP * VOIP. ``voip_play()`` needs `SoX `_. Platform-specific instructions ============================== Linux native ------------ Scapy can run natively on Linux, without libdnet and libpcap. * Install `Python 2.5 `_. * 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 graphviz imagemagick python-gnuplot python-crypto python-pyx Fedora ------ Here's how to install Scapy on Fedora 9: .. code-block:: text # yum install mercurial python-devel # cd /tmp # hg clone http://hg.secdev.org/scapy # cd scapy # python setup.py install Some optional packages: .. code-block:: text # yum install graphviz python-crypto sox PyX gnuplot numpy # cd /tmp # wget http://heanet.dl.sourceforge.net/sourceforge/gnuplot-py/gnuplot-py-1.8.tar.gz # tar xvfz gnuplot-py-1.8.tar.gz # cd gnuplot-py-1.8 # python setup.py install Mac OS X -------- Here's how to install Scapy on Mac OS 10.4 (Tiger) or 10.5 (Leopard). Set up a development environment ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1. Install X11. On the Mac OS X DVD, it is located in the "Optional Installs.mpkg" package. 2. Install SDK. On the Mac OS X DVD, it is located in the "Xcode Tools/Packages" directory. 3. Install Python 2.5 from Python.org. Using Apple's Python version will lead to some problems. Get it from http://www.python.org/ftp/python/2.5.2/python-2.5.2-macosx.dmg Install using MacPorts ^^^^^^^^^^^^^^^^^^^^^^ 3. Install MacPorts Download the dmg from macports.org and install it. 4. Update MacPorts:: $ sudo port -d selfupdate 5. Install Scapy:: $ sudo port install scapy You can then update to the latest version as shown in the generic installation above. Install from original sources ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Install libdnet and its Python wrapper:: $ wget http://libdnet.googlecode.com/files/libdnet-1.12.tgz $ tar xfz libdnet-1.12.tgz $ ./configure $ make $ sudo make install $ cd python $ python2.5 setup.py install Install libpcap and its Python wrapper:: $ wget http://dfn.dl.sourceforge.net/sourceforge/pylibpcap/pylibpcap-0.6.2.tar.gz $ tar xfz pylibpcap-0.6.2.tar.gz $ cd pylibpcap-0.6.2 $ python2.5 setup.py install Optionally: Install readline:: $ python `python -c "import pimp; print pimp.__file__"` -i readline OpenBSD ------- Here's how to install Scapy on OpenBSD 4.3. .. code-block:: text # export PKG_PATH=ftp://ftp.openbsd.org/pub/OpenBSD/4.3/packages/i386/ # pkg_add py-libpcap py-libdnet mercurial # ln -sf /usr/local/bin/python2.5 /usr/local/bin/python # cd /tmp # hg clone http://hg.secdev.org/scapy # cd scapy # python setup.py install Optional packages ^^^^^^^^^^^^^^^^^ py-crypto .. code-block:: text # pkg_add py-crypto gnuplot and its Python binding: .. code-block:: text # pkg_add gnuplot py-gnuplot Graphviz (large download, will install several GNOME libraries) .. code-block:: text # pkg_add graphviz ImageMagick (takes long to compile) .. code-block:: text # cd /tmp # ftp ftp://ftp.openbsd.org/pub/OpenBSD/4.3/ports.tar.gz # cd /usr # tar xvfz /tmp/ports.tar.gz # cd /usr/ports/graphics/ImageMagick/ # make install PyX (very large download, will install texlive etc.) .. code-block:: text # pkg_add py-pyx /etc/ethertypes .. code-block:: text # wget http://www.secdev.org/projects/scapy/files/ethertypes -O /etc/ethertypes python-bz2 (for UTscapy) .. code-block:: text # pkg_add python-bz2 .. _windows_installation: Windows ------- .. sectionauthor:: Dirk Loss Scapy is primarily being developed for Unix-like systems and works best on those platforms. But the latest version of Scapy supports Windows out-of-the-box. So you can use nearly all of Scapy's features on your Windows machine as well. .. note:: If you update from Scapy-win v1.2.0.2 to Scapy v2 remember to use ``from scapy.all import *`` instead of ``from scapy import *``. .. image:: graphics/scapy-win-screenshot1.png :scale: 80 :align: center You need the following software packages in order to install Scapy on Windows: * `Python `_: `python-2.5.4.msi `_. `python-2.6.3.msi `_. After installation, add the Python installation directory and its \Scripts subdirectory to your PATH. Depending on your Python version, the defaults would be ``C:\Python25`` and ``C:\Python25\Scripts`` or ``C:\Python26`` and ``C:\Python26\Scripts`` respectively. * `Scapy `_: `latest development version `_ from the `Mercurial repository `_. Unzip the archive, open a command prompt in that directory and run "python setup.py install". * `pywin32 `_: `pywin32-214.win32-py2.5.exe `_ `pywin32-214.win32-py2.6.exe `_ * `WinPcap `_: `WinPcap_4_1_1.exe `_. You might want to choose "[x] Automatically start the WinPcap driver at boot time", so that non-privileged users can sniff, especially under Vista and Windows 7. If you want to use the ethernet vendor database to resolve MAC addresses or use the ``wireshark()`` command, download `Wireshark `_ which already includes WinPcap. * `pypcap `_: `pcap-1.1-scapy-20090720.win32-py25.exe `_ `pcap-1.1-scapy-20090720.win32-py2.6.exe `_. This is a *special version for Scapy*, as the original leads to some timing problems. Now works on Vista and Windows 7, too. Under Vista/Win7 please right-click on the installer and choose "Run as administrator". * `libdnet `_: `dnet-1.12.win32-py2.5.exe `_ `dnet-1.12.win32-py2.6.exe `_. Under Vista/Win7 please right-click on the installer and choose "Run as administrator" * `pyreadline `_: `pyreadline-1.5-win32-setup.exe `_ Just download the files and run the setup program. Choosing the default installation options should be safe. For your convenience direct links are given to the versions I used (for Python 2.5 and Python 2.6). If these links do not work or if you are using a different Python version, just visit the homepage of the respective package and look for a Windows binary. As a last resort, search the web for the filename. After all packages are installed, open a command prompt (cmd.exe) and run Scapy by typing ``scapy``. If you have set the PATH correctly, this will find a little batch file in your ``C:\Python26\Scripts`` directory and instruct the Python interpreter to load Scapy. If really nothing seems to work, consider skipping the Windows version and using Scapy from a Linux Live CD -- either in a virtual machine on your Windows host or by booting from CDROM: An older version of Scapy is already included in grml and BackTrack for example. While using the Live CD you can easily upgrade to the lastest Scapy version by typing ``cd /tmp && wget scapy.net``. Optional packages ^^^^^^^^^^^^^^^^^ Plotting (``plot``) * `GnuPlot `_: `gp420win32.zip `_. Extract the zip file (e.g. to ``c:\gnuplot``) and add the ``gnuplot\bin`` directory to your PATH. * `NumPy `_: `numpy-1.3.0-win32-superpack-python2.5.exe `_ `numpy-1.3.0-win32-superpack-python2.6.exe `_. Gnuplot-py 1.8 needs NumPy. * `Gnuplot-py `_: `gnuplot-py-1.8.zip `_. Extract to temp dir, open command prompt, change to tempdir and type ``python setup.py install``. 2D Graphics (``psdump``, ``pdfdump``) * `PyX `_: `PyX-0.10.tar.gz `_. Extract to temp dir, open command prompt, change to tempdir and type ``python setup.py install`` * `MikTeX `_: `Basic MiKTeX 2.8 Installer `_. PyX needs a LaTeX installation. Choose an installation directory WITHOUT spaces (e.g. ``C:\MikTex2.8`` and add the ``(INSTALLDIR)\miktex\bin`` subdirectory to your PATH. Graphs (conversations) * `Graphviz `_: `graphviz-2.24.exe `_. Add ``(INSTALLDIR)\ATT\Graphviz\bin`` to your PATH. 3D Graphics (trace3d) * `VPython `_: `VPython-Win-Py2.5-3.2.11.exe `_. No binary installer for Python 2.6 seems to be available yet. WEP decryption * `PyCrypto `_: `pycrypto-2.0.1.win32-py2.5.zip `_ `pycrypto-2.0.1.win32-py2.6.exe `_ Fingerprinting * `Nmap `_. `nmap-4.20-setup.exe `_. If you use the default installation directory, Scapy should automatically find the fingerprints file. * Queso: `queso-980922.tar.gz `_. Extract the tar.gz file (e.g. using `7-Zip `_) and put ``queso.conf`` into your Scapy directory Screenshot ^^^^^^^^^^ .. image:: graphics/scapy-win-screenshot2.png :scale: 80 :align: center Known bugs ^^^^^^^^^^ * You may not be able to capture WLAN traffic on Windows. Reasons are explained on the Wireshark wiki and in the WinPcap FAQ. Try switching off promiscuous mode with ``conf.sniff_promisc=False``. * Packets cannot be sent to localhost (or local IP addresses on your own host). * The ``voip_play()`` functions do not work because they output the sound via ``/dev/dsp`` which is not available on Windows.