mirror of
https://github.com/zardus/ctf-tools
synced 2025-01-08 10:38:47 +00:00
12 lines
284 B
Bash
Executable file
12 lines
284 B
Bash
Executable file
#!/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
|