forked from DominicBreuker/stego-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4acdcd
commit ccc9a97
Showing
10 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
data/**/* | ||
!data/README.md | ||
examples/stego-files | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Data folder | ||
|
||
Put your images into this folder, then mount it to the container at `/data`. | ||
You can use it as your workspace. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# Download | ||
git clone https://github.com/RobinDavid/LSB-Steganography.git /opt/LSBSteg | ||
|
||
# Install requirements | ||
apt-get install -y python-opencv | ||
pip install docopt | ||
|
||
# Install | ||
cat << EOF > /usr/bin/LSBSteg | ||
#!/bin/sh | ||
python2 /opt/LSBSteg/LSBSteg.py \$@ | ||
EOF | ||
chmod +x /usr/bin/LSBSteg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# Download | ||
git clone https://github.com/livz/cloacked-pixel.git /opt/cloacked_pixel | ||
|
||
# Install requirements | ||
pip install numpy matplotlib | ||
apt-get install -y python-tk | ||
|
||
# Install | ||
cat << EOF > /usr/bin/cloackedpixel | ||
#!/bin/sh | ||
python2 /opt/cloacked_pixel/lsb.py \$@ | ||
EOF | ||
chmod +x /usr/bin/cloackedpixel | ||
|
||
cat << EOF > /usr/bin/cloackedpixel-analyse | ||
#!/bin/sh | ||
python2 /opt/cloacked_pixel/lsb.py analyse \$@ | ||
EOF | ||
chmod +x /usr/bin/cloackedpixel-analyse | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# install_dev folder | ||
|
||
Use this to try out some custom install scripts without having to rebuild entire image all the time. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters