Created
May 28, 2014 15:38
-
-
Save nvasilakis/97d614023b19be9ef5a4 to your computer and use it in GitHub Desktop.
Install Scapy on OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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