mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-09 11:08:47 +00:00
13 lines
284 B
Text
13 lines
284 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
git clone --depth=1 https://github.com/nccgroup/featherduster.git
|
||
|
ctf-tools-pip install --upgrade -e featherduster
|
||
|
|
||
|
mkdir bin || true
|
||
|
cd bin
|
||
|
cat > featherduster <<EOF
|
||
|
#!/bin/sh
|
||
|
exec python $(realpath ../featherduster/featherduster.py) "\$@"
|
||
|
EOF
|
||
|
chmod +x featherduster
|