Added tools: stegano-tools (#195)

This commit is contained in:
Alex 2022-03-02 11:01:25 +01:00 committed by GitHub
parent 0dc70413d8
commit ed7117e9eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -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
View 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