Skip to content

Instantly share code, notes, and snippets.

@cmlh
Created October 27, 2011 23:45
Show Gist options
  • Save cmlh/1321223 to your computer and use it in GitHub Desktop.
Save cmlh/1321223 to your computer and use it in GitHub Desktop.
Updated the skipfish build sh script for BackTrack Linux from http://www.ehacking.net/2011/06/skipfish-backtrack5-tutorial.html
#!/bin/sh
# Builds skipfish on BackTrack 5 R1
# Updated from http://www.ehacking.net/2011/06/skipfish-backtrack5-tutorial.html
# skipfish is available from http://code.google.com/p/skipfish/
# BackTrack is available from http://www.backtrack-linux.org/
# TODO sudo
apt-get install libssl-dev
# TODO retrieve the latest release of skipfish based version number
# TODO replace "skipfish-2.03b" with $VERSION (or something similar)
wget http://skipfish.googlecode.com/files/skipfish-2.03b.tgz
gunzip skipfish-2.03b.tgz
tar -xf skipfish-2.03b.tar
cd skipfish-2.03b
make
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment