mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
9 lines
226 B
Bash
Executable file
9 lines
226 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
curl http://www.caesum.com/handbook/steganabara-1.1.1.tar.gz | tar xz
|
|
mkdir -p bin
|
|
cat <<END > bin/steganabara
|
|
#!/bin/bash -e
|
|
java -cp $PWD/Steganabara/bin steganabara.Steganabara
|
|
END
|
|
chmod 755 bin/steganabara
|