mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 06:22:34 +00:00
979c17118c
Original author has 'quit' Github or something. Luckily have likely the last version that was on Github.
17 lines
284 B
Bash
Executable file
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
|