-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.sh
More file actions
452 lines (403 loc) · 14.2 KB
/
app.sh
File metadata and controls
452 lines (403 loc) · 14.2 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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
#!/bin/bash
#sudo apt --assume-yes install figlet -qq > /dev/null
agencie = "Governement"
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
banner () {
reset
figlet -c "GovSocial HackerTools"
printf "\t Gov for Governement and Social for every socials medias !"
printf "\n\n"
}
gov () {
govdb () {
banner
printf " 1) Access to the FBI databases\t2) Access to the CIA databases"
printf "\n"
printf " 3) Access to the NSA databases\t4) Access to the Interpol databases"
printf "\n"
printf " 5) Access to the DOD databases\t6) Access to the ATF databases"
printf "\n"
echo "More tools will be available later, stay tuned"
printf "\n\n"
read -p "Which db do you want to access ? " govdbchoice
if [ $govdbchoice == 1 ]
then
agencie=FBI
elif [ $govdbchoice == 2 ]
then
agencie=CIA
elif [ $govdbchoice == 3 ]
then
agencie=NSA
elif [ $govdbchoice == 4 ]
then
agencie=INTERPOL
elif [ $govdbchoice == 5 ]
then
agencie=DOD
elif [ $govdbchoice == 6 ]
then
agencie=ATF
fi
echo "${green}$agencie is fun"
while read line
do
echo -e "$line "
sleep .05
done < victims.txt
echo "${reset}Finished to breach into $agencie databases! "
printf "\n"
echo "Wait a few seconds for identity deletion (No worry, its to protect you).."
printf "\n"
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2;
printf "\tDone! Here how to connect:"
printf "\n"
sleep 5
echo "${red}We have some trouble getting in... Check internet connection and CPU usage..${reset}"
printf "\n"
echo "Retrying."
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2;
sleep 15
printf "\n"
echo "${red}We have some trouble getting in.. check Internet connection and CPU usage..${reset}"
#xdg-open https://github.com/Poloin34/MasterHacker/tree/master/victims
exit
}
govfamous () {
banner
printf " 1) Access Trump's Phone\t2) Access Trump's Laptop"
printf "\n"
printf " 3) Access Pence's Phone\t4) Access Pence's Laptop"
printf "\n"
printf " 5) Access Obama's Phone\t6) Access Obama's Laptop"
printf "\n"
printf " 7) Access White House security system (WARNING, CAN CAUSE A NUCLEAR WAR)"
printf "\n\n"
read -p "Which one do you want to access? " govfamouschoice
if [ $govfamouschoice == 1 ]
then
people="TRUMP PHONE"
elif [ $govfamouschoice == 2 ]
then
people="TRUMP LAPTOP"
elif [ $govfamouschoice == 3 ]
then
people="PENCE PHONE"
elif [ $govfamouschoice == 4 ]
then
people="PENCE LAPTOP"
elif [ $govfamouschoice == 5 ]
then
people="OBAMA PHONE"
elif [ $govfamouschoice == 6 ]
then
people="OBAMA LAPTOP"
elif [ $govfamouschoice == 7 ]
then
people="WHITE HOUSE SECURITY"
fi
echo "${green}$people is fun"
while read line
do
echo -e "$line "
sleep .02
done < victims.txt
echo "${reset}Finished to breach into $people! "
printf "\n"
echo "Wait a few seconds for identity deletion (No worry, its to protect you).."
printf "\n"
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2;
printf "\tDone ! Here how to connect :"
printf "\n"
sleep 5
echo "${red}We have some trouble getting in.. check internet connection and cpu usage..${reset}"
printf "\n"
echo "Retrying."
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2;
sleep 15
printf "\n"
echo "${red}We have some trouble getting in.. check internet connection and cpu usage..${reset}"
#xdg-open https://github.com/Poloin34/MasterHacker/tree/master/victims
exit
}
govconglo () {
banner
printf " 1) Get 100 random free items from Walmart\t2) Get 1000 random little things from Amazon"
printf "\n"
printf " 3) Get Amazon Prime for life\t4) Get ten 100% discount off at Amazon"
printf "\n"
printf " 5) Get Netflix free, forever! (Available for now)"
printf "\n\n"
read -p "Which one do you want to have? " govconglochoice
if [ $govconglochoice == 1 ]
then
conglothings="100 RANDOM FREE WALMART ITEM"
elif [ $govconglochoice == 2 ]
then
conglothings="1000 RANDOM LITTLE AMAZON THINGS"
elif [ $govconglochoice == 3 ]
then
conglothings="LIFETIME AMAZON PRIME"
elif [ $govconglochoice == 4 ]
then
conglothings="10x 100% DISCOUNT AMAZON COUPONS CODES"
elif [ $govconglochoice == 5 ]
then
conglothings="FREE NETFLIX LIFETIME"
fi
echo "${green}$conglothings is fun"
while read line
do
echo -e "$line "
sleep .05
done < victims.txt
while read line
do
echo -e "$line "
sleep .007
done < victims.txt
echo "${reset}Finished to breach in to get your $conglothings ! "
printf "\n"
echo "Wait a few seconds for identity deletion (No worry, its to protect you).."
printf "\n"
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2;
printf "\tDone! Here how to get them:"
printf "\n"
sleep 5
echo "${red}We have some trouble getting in.. check internet connection and cpu usage..${reset}"
printf "\n"
echo "Retrying."
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2;
sleep 15
printf "\n"
echo "${red}We have some trouble getting in.. check internet connection and cpu usage..${reset}"
#xdg-open https://github.com/Poloin34/MasterHacker/tree/master/victims
exit
}
banner
printf "Here are all the tools to hack government!"
printf "\n\n"
printf "1) Access to some databases"
printf "\n"
printf "2) Access to different famous gov computers and phones"
printf "\n"
printf "3) Exploit some breaches in conglomerate website/app to get free items and 100% discount"
printf "\n\n"
read -p "Which one do you want to see? " govchoice
if [ $govchoice == 1 ]
then
govdb
elif [ $govchoice == 2 ]
then
govfamous
elif [ $govchoice == 3 ]
then
govconglo
fi
}
social () {
insta () {
banner
printf "Here all the Instagram hacking tools:"
printf "\n\n"
printf " 1) Hack an account"
printf "\n"
printf "2) Get certified"
printf "\n"
printf " 3) Make someone lose their certified badge"
printf "\n"
printf " 4) Get shopping certified"
printf "\n"
printf " 5) Get a coupon for a free ad-post"
printf "\n"
printf " 6) Get +500 followers"
printf "\n"
printf " 7) Get +100 likes on your publication"
printf "\n\n"
read -p "What do you want to do ? " socialinstachoice
if [ $socialinstachoice == 1 ]
then
banner
printf "Let's hack an account !"
printf "\n"
read -p "First, write the account you want to hack: " instahack
sleep 1
banner
printf "We are going to hack the account '$instahack'"
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
printf "\n\n\n"
printf "${green}Succesfully hacked '$instahack' !${reset}"
printf "\n"
printf "Password is comming.."
printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
sleep 1; printf "."; sleep 1; printf "."; sleep 1; printf "."; sleep 2; printf "."; sleep 2; printf "."; sleep 5; printf "."
printf "\n\n"
printf "${red}Something bad happened.. check internet and cpu usage please....${reset}"
sleep 1
printf "\n"
printf "Retrying.."
sleep 15
"${red}Didn't worked... Retry with better internet !${reset}"
#xdg-open https://github.com/Poloin34/MasterHacker/tree/master/victims
exit
elif [ $socialinstachoice == 2 ]
then
banner
printf "Let's make your account certified !"
printf "\n"
read -p "First, tell me the account you want to be certified: " instacertif
sleep 1
banner
printf "Starting to apply the certification on $instacertif Instagram account."; sleep 0.2; printf "."
printf "\n"
printf "Connecting to instagram.com"; sleep 0.2; printf "."; sleep 0.2; printf "."; printf "${green}Connected !${reset}"
printf "\n"
printf "Getting access to the certification program."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "${green}Achieved !${reset}"
printf "\n"
printf "Sending username to certification list."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "${green}Account username send !${reset}"
printf "\n\n\n"
printf "Start using your internet connection and cpu to achieve the task."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."
sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."
printf "\n"
printf "${red}ERROR ! Your internet connection or CPU power is not enough !${reset}"
printf "\n"
printf "Retrying."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf ".";
sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."; sleep 0.2; printf "."
printf "${red}Error.... we can't send the proper way..${reset}"
#xdg-open https://github.com/Poloin34/MasterHacker/tree/master/victims
exit
elif [ $socialinstachoice == 3 ]
then
banner
elif [ $socialinstachoice == 4 ]
then
banner
elif [ $socialinstachoice == 5 ]
then
banner
elif [ $socialinstachoice == 6 ]
then
banner
elif [ $socialinstachoice == 7 ]
then
banner
elif [ $socialinstachoice == 8 ]
then
banner
fi
}
facebook () {
banner
}
snapchat () {
banner
}
tinder () {
banner
}
reddit () {
banner
}
outlook () {
banner
}
gmail () {
banner
}
youtube () {
banner
}
twitch () {
banner
}
twitter () {
banner
}
minecraft () {
banner
}
fortnite () {
banner
}
banner
printf "Here all the Socials Medias hacking possibilities:"
printf "\n\n"
printf " 1) Instagram\t2) Facebook"
printf "\n"
printf " 3) Twitter\t4) Snapchat"
printf "\n"
printf " 5) Reddit\t6) Tinder"
printf "\n"
printf " 7) Gmail\t8) Outlook"
printf "\n"
printf " 9) Youtube\t10) Twitch"
printf "\n"
printf " 11) Minecraft\t12) Fortnite"
printf "\n\n"
read -p "Which one do you want to check ? " socialchoice
if [ $socialchoice == 1 ]
then
insta
elif [ $socialchoice == 2 ]
then
facebook
elif [ $socialchoice == 3 ]
then
twitter
elif [ $socialchoice == 4 ]
then
snapchat
elif [ $socialchoice == 5 ]
then
reddit
elif [ $socialchoice == 6 ]
then
tinder
elif [ $socialchoice == 7 ]
then
gmail
elif [ $socialchoice == 8 ]
then
outlook
elif [ $socialchoice == 9 ]
then
youtube
elif [ $socialchoice == 10 ]
then
twitch
elif [ $socialchoice == 11 ]
then
minecraft
elif [ $socialchoice == 12 ]
then
fortnite
fi
}
home () {
banner
printf "Welcome to this tool! Do you want to hack your government or just your ex's Instagram? This tool is for you !!"
printf "\tGET FREE NETFLIX FOR A LIMITED TIME! SELECT 1, THEN 3, AND THEN 5 !!"
printf "\n\nHere all of the available options:"
printf "\n\n"
printf "\t1) Governement hacking tools"
printf "\t2) Social Medias hacking tools"
printf "\n\n"
read -p "Choose your option: " homechoose
if [ $homechoose == 1 ]
then
gov
elif [ $homechoose == 2 ]
then
social
fi
}
home