Skip to content

Instantly share code, notes, and snippets.

@nvasilakis
Created May 28, 2014 15:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nvasilakis/97d614023b19be9ef5a4 to your computer and use it in GitHub Desktop.
Save nvasilakis/97d614023b19be9ef5a4 to your computer and use it in GitHub Desktop.
Install Scapy on OS X
# Install scapy on osx
# grap libnet
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
# grab Pylibpcap
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
# install scapy -- main site is down
wget http://www.secdev.org/projects/scapy/files/scapy-latest.zip
unzip scapy-latest.zip
cd scapy-2.*
sudo python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment