ctf-tools/shellsploit/install
2016-09-23 13:51:50 +00:00

17 lines
281 B
Bash
Executable file

#!/bin/bash -e
git clone https://github.com/b3mb4m/shellsploit-framework.git
cd shellsploit-framework
set +e
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
set -e
python easyinstall.py install
cd ..
mkdir -p bin
cd bin
ln -sf $VIRTUAL_ENV/bin/shellsploit .
cd ..
deactivate