ctf-tools/shellsploit/install

18 lines
284 B
Text
Raw Normal View History

#!/bin/bash -ex
2016-02-11 18:22:43 +00:00
git clone https://github.com/raildex1/shellsploit-framework.git
2016-02-11 18:22:43 +00:00
cd shellsploit-framework
set +e
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
set -e
2016-02-11 18:22:43 +00:00
python easyinstall.py install
cd ..
mkdir -p bin
cd bin
2016-02-26 03:32:01 +00:00
ln -sf $VIRTUAL_ENV/bin/shellsploit .
2016-02-11 18:22:43 +00:00
cd ..
deactivate