mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-08 10:38:47 +00:00
13 lines
234 B
Text
13 lines
234 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
git clone https://github.com/b3mb4m/shellsploit-framework.git
|
||
|
cd shellsploit-framework
|
||
|
python easyinstall.py install
|
||
|
chmod 755 shellsploit
|
||
|
cd ..
|
||
|
|
||
|
mkdir -p bin
|
||
|
cd bin
|
||
|
ln -sf ../shellsploit-framework/shellsploit .
|
||
|
cd ..
|