-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathbrute_jpg.sh
executable file
·53 lines (39 loc) · 1.3 KB
/
brute_jpg.sh
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
#!/bin/bash
FILE=$1
WORDLIST=$2
echo "Checking file $FILE with wordlist $WORDLIST"
echo
echo "##############################"
echo "########## steghide ##########"
echo "##############################"
pybrute.py -f $FILE -w $WORDLIST steghide
echo
echo "##############################"
echo "########## outguess ##########"
echo "##############################"
pybrute.py -f $FILE -w $WORDLIST outguess
echo
echo "###################################"
echo "########## outguess-0.13 ##########"
echo "###################################"
pybrute.py -f $FILE -w $WORDLIST outguess-0.13
echo
echo "###############################"
echo "########## stegbreak ##########"
echo "###############################"
echo " -stegbreak (format=outguess)"
stegbreak -t o -f $WORDLIST $FILE
echo " -stegbreak (format=jphide)"
stegbreak -t p -f $WORDLIST $FILE
echo " -stegbreak (format=jsteg)"
stegbreak -t j -f $WORDLIST $FILE
echo
echo "##################################"
echo "########## stegoVeritas ##########"
echo "##################################"
# UUID=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
# TMP_DIR=/data/stegoVeritas/$UUID
# mkdir -p $TMP_DIR
#
# echo "Running stegoVerits takes time. Be patient and check out '$TMP_DIR' afterwards..."
# stegoveritas.py $FILE -outDir $TMP_DIR -bruteLSB