diff --git a/README.md b/README.md index 08494ab..9fa1794 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ Installers for the following tools are included: | stego | apt | [pngtools](https://launchpad.net/ubuntu/+source/pngtools) | PNG's analysis tool. | | stego | Directory | [sound-visualizer](http://www.sonicvisualiser.org/) | Audio file visualization. | | stego | Directory | [steganabara](http://www.caesum.com/handbook/stego.htm) | Another image stenography solver. | +| stego | Directory | [stegano-tools](https://github.com/dhondta/stegano-tools) | A collection of text and image steganography tools (incl LSB, PVD, PIT). | | stego | Directory | [stegdetect](http://www.outguess.org/) | Stenography detection/breaking tool. | | stego | Docker | [stego-toolkit](https://github.com/DominicBreuker/stego-toolkit) | A docker image with dozens of steg tools. | | stego | Directory | [stegsolve](http://www.caesum.com/handbook/stego.htm) | Image stenography solver. | diff --git a/stegano-tools/install b/stegano-tools/install new file mode 100755 index 0000000..a874ffc --- /dev/null +++ b/stegano-tools/install @@ -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