mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
Added featherduster cryptanalysis library/tool
This commit is contained in:
parent
c715a2129b
commit
56e3270274
2 changed files with 17 additions and 0 deletions
12
featherduster/install
Executable file
12
featherduster/install
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/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
|
5
featherduster/uninstall
Executable file
5
featherduster/uninstall
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
ctf-tools-pip uninstall -y featherduster || true
|
||||
|
||||
rm ../bin/featherduster
|
Loading…
Reference in a new issue