steganabara

This commit is contained in:
Yan 2015-05-10 21:07:46 -07:00
parent 2670e4d2f0
commit 6de76a92c8
2 changed files with 10 additions and 0 deletions

View file

@ -63,6 +63,7 @@ Installers for the following tools are included:
| web | [dirs3arch](https://github.com/maurosoria/dirs3arch) | Web path scanner. |
| web | [sqlmap](http://sqlmap.org/) | SQL injection automation engine. |
| stego | [stegsolve](http://www.caesum.com/handbook/stego.htm) | Image steganography solver. |
| stego | [steganabara](http://www.caesum.com/handbook/stego.htm) | Antoher image steganography solver. |
## Adding Tools

9
steganabara/install Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash -e
curl http://www.caesum.com/handbook/steganabara-1.1.1.tar.gz | tar xvz
mkdir -p bin
cat <<END > bin/steganabara
#!/bin/bash -e
java -cp $PWD/Steganabara/bin steganabara.Steganabara
END
chmod 755 bin/steganabara