mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
stego-toolkit added
This commit is contained in:
parent
e77f7c0427
commit
3829d66ca9
2 changed files with 30 additions and 0 deletions
4
stego-toolkit/install
Executable file
4
stego-toolkit/install
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
# Nothing to do
|
||||
# This file exists to prevent manage-tools install from returning 1
|
26
stego-toolkit/install-root-debian
Executable file
26
stego-toolkit/install-root-debian
Executable file
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
# Install docker if needed
|
||||
set +e
|
||||
if which docker 2> /dev/null > /dev/null ; then
|
||||
set -e
|
||||
else
|
||||
set -e
|
||||
apt-get install -y \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
software-properties-common
|
||||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
|
||||
add-apt-repository \
|
||||
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
|
||||
$(lsb_release -cs) \
|
||||
stable"
|
||||
apt-get install docker-ce -y
|
||||
fi
|
||||
|
||||
# Pull the container
|
||||
docker pull dominicbreuker/stego-toolkit:latest
|
||||
|
||||
# To run the container, execute:
|
||||
# sudo docker run -it dominicbreuker/stego-toolkit /bin/bash
|
Loading…
Reference in a new issue