ctf-tools/shellsploit/install
raildex1 979c17118c Shellsploit Changed git url
Original author has 'quit' Github or something.

Luckily have likely the last version that was on Github.
2017-04-25 05:39:37 +10:00

17 lines
284 B
Bash
Executable file

#!/bin/bash -ex
git clone https://github.com/raildex1/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