-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstegotools.sh
More file actions
executable file
·79 lines (61 loc) · 1.97 KB
/
stegotools.sh
File metadata and controls
executable file
·79 lines (61 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
apt-get update
echo "Install exiftool"
apt-get install exiftool -y
echo "Install LSB-steganography"
git clone https://github.com/RobinDavid/LSB-Steganography /usr/share/LSB-steganography
pip install -r /usr/share/LSB-steganography/requirements.txt
chmod 755 /usr/share/LSB-steganography/LSBSteg.py
echo "Install pdf-parser"
apt-get install pdf-parser -y
echo "Install steghide"
apt-get install steghide -y
echo "Install sng"
apt-get install sng -y
echo "Install stegsolve"
wget www.caesum.com/handbook/Stegsolve.jar -P /usr/share/stegsolve/
ln -s /usr/share/stegsolve/Stegsolve.jar /usr/bin/stegsolve.jar
echo "Install stegsnow"
apt-get install stegsnow -y
echo "Install stegosuite"
apt-get install stegosuite -y
echo "Install ffmpeg"
apt-get install ffmpeg -y
echo "Install pngcheck"
apt-get install pngcheck -y
echo "Install stegoveritas"
pip3 install stegoveritas
stegoveritas_install_deps
echo "Install outguess"
apt-get install outguess -y
echo "Install spectrology"
git clone https://github.com/solusipse/spectrology /usr/share/spectrology
ln -s /usr/share/spectrology/ /usr/bin
echo "Install cloacked-pixel"
git clone https://github.com/livz/cloacked-pixel /usr/share/cloacked-pixel
ln -s /usr/share/cloacked-pixel/lsb.py /usr/bin/cloackedpxl-lsb.py
ln -s /usr/share/cloacked-pixel/crypt.py /usr/bin/cloackedpxl-crypt.py
echo "Install AudioStego (Hideme)"
apt-get install -y libboost-all-dev cmake
git clone https://github.com/danielcardeenas/AudioStego /usr/share/AudioStego
cd /usr/share/AudioStego
mkdir build
cd build
cmake ..
make
ln -s /usr/share/AudioStego/build/hideme /usr/bin/
echo "Install jphide & jpseek"
apt-get install libjpeg-dev -y
git clone https://github.com/h3xx/jphs /usr/share/jphs
cd /usr/share/jphs/
make
ln -s /usr/share/jphs/jpseek /usr/bin/
ln -s /usr/share/jphs/jphide /usr/bin/
cd
echo "Install zsteg"
git clone https://github.com/zed-0xff/zsteg.git /usr/share/zsteg
cd /usr/share/zsteg
gem install zsteg
cd
echo "Install qsstv"
apt-get install qsstv -y