mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
Added tools: stegano-tools (#195)
This commit is contained in:
parent
0dc70413d8
commit
ed7117e9eb
2 changed files with 14 additions and 0 deletions
|
@ -101,6 +101,7 @@ Installers for the following tools are included:
|
|||
| stego | apt | [pngtools](https://launchpad.net/ubuntu/+source/pngtools) | PNG's analysis tool. | <!--deb-tool-->
|
||||
| stego | Directory | [sound-visualizer](http://www.sonicvisualiser.org/) | Audio file visualization. | <!--tool--><!--failing-->
|
||||
| stego | Directory | [steganabara](http://www.caesum.com/handbook/stego.htm) | Another image stenography solver. | <!--tool--><!--test-->
|
||||
| stego | Directory | [stegano-tools](https://github.com/dhondta/stegano-tools) | A collection of text and image steganography tools (incl LSB, PVD, PIT). | <!--tool--><!--test-->
|
||||
| stego | Directory | [stegdetect](http://www.outguess.org/) | Stenography detection/breaking tool. | <!--tool--><!--test-->
|
||||
| stego | Docker | [stego-toolkit](https://github.com/DominicBreuker/stego-toolkit) | A docker image with dozens of steg tools. | <!--tool--><!--no-test-->
|
||||
| stego | Directory | [stegsolve](http://www.caesum.com/handbook/stego.htm) | Image stenography solver. | <!--tool--><!--test-->
|
||||
|
|
13
stegano-tools/install
Executable file
13
stegano-tools/install
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
ctf-tools-pip install --upgrade tinyscript
|
||||
ctf-tools-pip3 install --upgrade tinyscript
|
||||
[ -e stegano-tools ] || git clone --recurse https://github.com/dhondta/stegano-tools
|
||||
|
||||
mkdir -p bin
|
||||
for F in `find stegano-tools -type f -iname "*.py"`; do
|
||||
chmod +x $F
|
||||
N="${F##*/}"
|
||||
N="${N%.py}"
|
||||
ln -s ../../$F bin/$N
|
||||
done
|
Loading…
Reference in a new issue