Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions scripts/arachni.sh
Original file line number Diff line number Diff line change
@@ -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

11 changes: 11 additions & 0 deletions scripts/skipfish.sh
Original file line number Diff line number Diff line change
@@ -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

15 changes: 15 additions & 0 deletions scripts/w3af.sh
Original file line number Diff line number Diff line change
@@ -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 ..