Created
November 11, 2012 02:48
-
-
Save muratayusuke/4053495 to your computer and use it in GitHub Desktop.
skipfish - security scan tool
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
#!/bin/bash | |
# | |
# This script run as root | |
# | |
# Detail: http://code.google.com/p/skipfish/wiki/SkipfishDoc | |
# | |
################################## | |
# usage | |
################################## | |
# 1. wget https://raw.github.com/gist/4053495/skipfish.sh | |
# 2. sudo sh skipfish.sh ${version} | |
################################## | |
aptitude install libpcre3-dev libidn11-dev | |
pushd /usr/local/src | |
SF_VER=$1 | |
wget http://code.google.com/p/skipfish/downloads/detail?name=skipfish-${SF_VER}.tgz | |
tar xzf skipfish-${SF_VER}.taz | |
cd skipfish-${SF_VER} | |
make | |
cp -r /usr/local/src/skipfish-${SF_VER} /usr/local/ | |
pushd /usr/local/ | |
ln -s skipfish-${SF_VER} skipfish | |
popd | |
popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment