mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
steganabara
This commit is contained in:
parent
2670e4d2f0
commit
6de76a92c8
2 changed files with 10 additions and 0 deletions
|
@ -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
9
steganabara/install
Executable 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
|
Loading…
Reference in a new issue