Scapy/4/en

From aldeid
Jump to navigation Jump to search

Sous Linux (Debian)

Installation par les packages

Il existe un package Scapy. Néanmoins, celui-ci correspond à une ancienne version (1.1.1-3) et il est préférable d’effectuer une installation manuelle. La commande suivante installe scapy ainsi que les dépendances nécessaires :

# apt-get install python-gnuplot python-crypto python-pyx ebtables python-visual sox xpdf gv python-scapy
Note
Pour une installation dans un autre environnement que Debian ou pour plus de renseignements sur les dépendances, consulter la page suivante : http://www.secdev.org/projects/scapy/portability.html.

Installation par les sources

Installation des dépendances

gnuplot (nécessaire pour gnuplot-py)
# cd /usr/local/src/
# wget http://downloads.sourceforge.net/sourceforge/gnuplot/gnuplot-4.2.5.tar.gz?use_mirror=freefr
# tar xzvf gnuplot-4.2.5.tar.gz
# cd gnuplot-4.2.5/
# ./configure
# make
# make install
package pyhton-dev (requis pour numpy)
# apt-get install python-dev
numpy (nécessaire pour gnuplot-py)
# cd /usr/local/src/
# wget http://downloads.sourceforge.net/sourceforge/numpy/numpy-1.3.0.tar.gz?use_mirror=freefr
# tar xzvf numpy-1.3.0.tar.gz
# cd numpy-1.3.0/
# python setup.py install
gnuplot-py
# cd /usr/local/src/
# wget http://downloads.sourceforge.net/sourceforge/gnuplot-py/gnuplot-py-1.8.tar.gz?use_mirror=freefr
# tar xzvf gnuplot-py-1.8.tar.gz
# cd gnuplot-py-1.8/
# python setup.py install
LaTeX
# cd /usr/local/src/
# wget http://ctan.math.utah.edu/ctan/tex-archive/systems/texlive/tlnet/2008/install-tl-unx.tar.gz
# tar xzvf install-tl-unx.tar.gz
# cd install-tl/
# ./install-tl

Suivre les étapes de l'installation

INCOMPLETE SECTION OR ARTICLE
This section/article is being written and is therefore not complete.
Thank you for your comprehension.
************
http://www.secdev.org/projects/scapy/doc/installation.html
************