forked from s1l3nt78/TigerShark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtigershark
executable file
·259 lines (227 loc) · 6.8 KB
/
tigershark
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#!/bin/bash
ORNG='\033[0;33m'
NC='\033[0m'
W='\033[1;37m'
LP='\033[1;35m'
YLW='\033[1;33m'
LBBLUE='\e[104m'
# Exploitation
# Metepreter payload
dropper_mods(){
if [[ -d '/opt/TigerShark/Payloads' ]]; then
sleep 1
else
mkdir /opt/TigerShark/Payloads
fi
PS3='What payload would you like to create?'
options=("Enigma" "html Server Gateway" "Pupy" "RCE VBS Exploit" "Back")
select opt in "${options[@]}"
do
case $opt in
"Enigma")
./Modules/Droppers/enigma.sh
;;
"html Server Gateway(Edge 11 vb RCE)")
./Modules/Droppers/ie_vb.sh
;;
"Pupy")
./Modules/Droppers/pupy.sh
;;
"RCE VBS Exploit")
./Modules/Droppers/vbs_rce.sh
;;
"Back")
./tigershark
;;
esac
done
}
# Recon Modules
# Gathering Module Selector
gathering_mods(){
PS3='Please define your activity?'
options=("Gathering Potential eMail targets for Campaign" "Gathering Potential Domains for Campaign")
select opt in "${options[@]}"
do
case $opt in
"Gathering Potential eMail targets for Campaign")
email_collection
;;
"Gathering Potential Domains for Campaign")
domain_collection
;;
esac
done
}
# Email Collection Modules
email_collection(){
PS3='Please select the tool for email gathering'
options=("PhishBait" "EmailGen" "PhEmail" "Back")
select opt in "${options[@]}"
do
case $opt in
"PhishBait")
./Modules/Gathering/Email/phishbait.sh
;;
"EmailGen")
./Modules/Gathering/Email/egen.sh
;;
"PhEmail")
./Modules/Gathering/Email/phemail.sh
;;
"Back")
./tigershark
;;
esac
done
}
# Domain Collection Modules
domain_collection(){
PS3='Please select the tool for domain gathering'
options=("CatPhish" "DomainHunter" "Back")
select opt in "${options[@]}"
do
case $opt in
"CatPhish")
./Modules/Gathering/Domain/catphish.sh
;;
"DomainHunter")
./Modules/Gathering/Domain/domainhunter.sh
;;
"Back")
./tigershark
;;
esac
done
}
# Phishing Modules
# Exploitation Module Selector
phishing_mods(){
PS3='What would you like to do?'
options=("Create a Single-Page Phishing Site" "Create a Multi-Page/Phishing Campaign" "Spam Phishing Mail" "Back")
select opt in "${options[@]}"
do
case $opt in
"Create a Single-Page Phishing Site")
single_pole
;;
"Create a Multi-Page/Phishing Campaign")
trawler
;;
"Spam Phishing Mail")
spammer
;;
"Back")
./tigershark
;;
esac
done
}
# Single-Page Tools
single_pole(){
PS3='Please Select Your Tool for Single-Page Phisher Generation'
options=("Artemis" "HiddenEye" "PhishX" "WeeMan" "CredSniper" "Back")
select opt in "${options[@]}"
do
case $opt in
"Artemis")
./Modules/Phishing/Singular/artemis.sh
;;
"HiddenEye")
./Modules/Phishing/Singular/hiddeneye.sh
;;
"PhishX")
./Modules/Phishing/Singular/phishx.sh
;;
"WeeMan")
./Modules/Phishing/Singular/weeman.sh
;;
"CredSniper")
./Modules/Phishing/Singular/credsniper.sh
;;
"Back")
./tigershark
;;
esac
done
}
# Multi-Page Tools
trawler(){
PS3='Please Select Your Tool for Campaign Phisher Generation'
options=("GoPhish" "SocialFish" "STP" "Back")
select opt in "${options[@]}"
do
case $opt in
"GoPhish")
./Modules/Phishing/Trawler/gophish.sh
;;
"SocialFish")
./Modules/Phishing/Trawler/socialfish.sh
;;
"STP")
./Modules/Phishing/Trawler/stp.sh
;;
"Back")
./tigershark
;;
esac
done
}
# Phishing Mail Spamming Tools
spammer(){
PS3='Please Select Your Tool for Mail Spamming'
options=("PhEmail" "Neos-Mail Spoofer" "Back")
select opt in "${options[@]}"
do
case $opt in
"PhEmail")
./Modules/Baiting/phemail.sh
;;
"Neos-Mail Spoofer")
./Modules/Baiting/neos.sh
;;
"Back")
./tigershark
;;
esac
done
}
# Start of TigerShark
cd /opt/TigerShark
echo -e "${LP}"
cat .vs/1
echo -e "${ORNG}"
figlet -f small "s1l3nt78"
echo -e "${NC}"
if [[ -d '/opt/TigerShark/Results' ]]; then
sleep 1
else
mkdir /opt/TigerShark/Results
fi
PS3='What would you like to do?'
options=("Perform Recon" "Deploy Fishing Environment" "Create a Payload" "Update")
select opt in "${options[@]}"
do
case $opt in
"Perform Recon")
gathering_mods
;;
"Deploy Fishing Environment")
phishing_mods
;;
"Create a Payload")
dropper_mods
;;
"Update")
echo -e "${ORNG}"
figlet -f mini "Checking for updates"
echo -e "${NC}"
cd /opt/TigerShark
git fetch
git pull
./install.sh
chmod +x Modules --recursive
./tigershark
;;
esac
done