Created
November 5, 2014 00:46
-
-
Save Cashiuus/98b364ac03d4cc0145cf to your computer and use it in GitHub Desktop.
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 | |
# Install the Arachni Web App Scanner on Kali | |
# ------------------------------ | |
# Dependencies | |
apt-get install -y build-essential curl libcurl3 libcurl4-openssl-dev ruby ruby-dev | |
# PhantomJS | |
apt-get install -y build-essential chrpath git-core libssl-dev libfontconfig1-dev libxft-dev | |
cd ~/git | |
git clone git://github.com/ariya/phantomjs.git | |
cd phantomjs | |
git checkout 1.9 | |
./build.sh | |
# ------------------------------ | |
# Core Arachni framework | |
cd ~/git | |
git clone git://github.com/Arachni/arachni.git | |
cd arachni | |
gem install bundler | |
bundle install --without prof | |
rake install | |
ln -s ~/git/arachni/bin/arachni /usr/local/bin/arachni | |
# Default Creds can be found in the application's README file | |
# Default Admin - Email: [email protected] PW: administrator | |
# Default User - Email: [email protected] PW: regular_user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment