From dfa1898a66a8ad2ecf92e97bf7a2b36b45edf7a5 Mon Sep 17 00:00:00 2001 From: MatthiasLittmann Date: Fri, 15 Aug 2014 17:09:27 +0200 Subject: [PATCH 1/2] Basic scripts for building skipfish and arachni --- scripts/arachni.sh | 10 ++++++++++ scripts/skipfish.sh | 11 +++++++++++ 2 files changed, 21 insertions(+) create mode 100644 scripts/arachni.sh create mode 100644 scripts/skipfish.sh diff --git a/scripts/arachni.sh b/scripts/arachni.sh new file mode 100644 index 0000000..d7135ef --- /dev/null +++ b/scripts/arachni.sh @@ -0,0 +1,10 @@ +# ARACHNI_BUILD_ENV=development +# wget -O - https://raw.github.com/Arachni/build-scripts/master/bootstrap.sh | bash +wget - https://raw.github.com/Arachni/build-scripts/master/bootstrap.sh +bash ./bootstrap.sh + +# rm -r arachni-build-dir + +# wget http://downloads.arachni-scanner.com/arachni-0.4.7-0.4.4-linux-i686.tar.gz +# tar -zxvf arachni-0.4.7-0.4.4-linux-i686.tar.gz > /dev/null + diff --git a/scripts/skipfish.sh b/scripts/skipfish.sh new file mode 100644 index 0000000..18c1b39 --- /dev/null +++ b/scripts/skipfish.sh @@ -0,0 +1,11 @@ +wget https://skipfish.googlecode.com/files/skipfish-2.10b.tgz +tar -zxvf skipfish-2.10b.tgz > /dev/null +# sudo apt-get update +# sudo apt-get upgrade +sudo apt-get install libssl-dev libidn11-dev libpcre++-dev +cd skipfish-2.10b +make +cd .. + +# rm -r skipfish-2.10b + From 68a5436781509939f8a8e94ee4eccc29b64c483f Mon Sep 17 00:00:00 2001 From: MatthiasLittmann Date: Fri, 14 Nov 2014 15:09:46 +0100 Subject: [PATCH 2/2] Add install script for w3af --- scripts/w3af.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 scripts/w3af.sh diff --git a/scripts/w3af.sh b/scripts/w3af.sh new file mode 100644 index 0000000..25fadbc --- /dev/null +++ b/scripts/w3af.sh @@ -0,0 +1,15 @@ +sudo apt-get update +sudo apt-get install git python python-pip +# python-dev-all +git clone --depth 1 https://github.com/andresriancho/w3af.git +cd w3af +git pull +git checkout develop +./w3af_console +# wget -O https://bootstrap.pypa.io/get-pip.py | python +wget - https://bootstrap.pypa.io/get-pip.py +sudo python ./get-pip.py + +/tmp/w3af_dependency_install.sh + +cd ..