-
Notifications
You must be signed in to change notification settings - Fork 9
/
hack
492 lines (488 loc) · 13.8 KB
/
hack
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
#!/usr/bin/python3
# This code write by Mr.nope
# Version 1.5
import os
import time
import subprocess
try:
import ipapi
except ImportError:
os.system("pip3 install ipapi")
import sys
import platform
class color:
line = '\033[4m'
End = '\033[0m'
green = '\033[32m'
red = '\033[41m'
cyan = '\033[36m'
blue = '\033[44m'
yellow = '\033[43m'
opt = color.line + '\nHack' + color.line + " ~# " + color.End
system = platform.uname()[0]
def cls():
if system == 'Linux':
os.system("clear")
else:
print("\nPlease, Run This Programm on Linux (Termux) Android !\n")
sys.exit()
banner = color.green+ """
_____ _ _ _____ _
| __ | |___ ___| |_ |_ _|___ ___| |
| __ -| | .'| _| '_| | | | . | . | |
|_____|_|__,|___|_,_| |_| |___|___|_|
""" + color.End
banner_ver = color.green+ """
_____ _ _ _____ _
| __ | |___ ___| |_ |_ _|___ ___| | """ + color.red + "Version: " + color.End + color.cyan + "1.5" + color.green + """
| __ -| | .'| _| '_| | | | . | . | |
|_____|_|__,|___|_,_| |_| |___|___|_|
""" + color.End
def black():
os.system("printf '\033]2;Black-Tool\a'")
cls()
print(banner_ver)
list()
def list():
print("{1}.Web Hacking")
print("{2}.Phishing")
print("{3}.Cam Hack")
print("{4}.Hacking Tools")
print("{5}.Black-Tool For (Linux/MacOS/Windows)")
print("{6}.Web Info")
print("{7}.Soial Enginner")
print("{8}.DDos Attack")
print("{9}.Wirless Attack")
print("{0}.Developer")
print("{99}.Exit")
choose = input(opt)
if choose == '1':
webhacking()
elif choose == '2':
Phishing()
elif choose == '3':
camhack()
elif choose == '4':
hacktool()
elif choose == '5':
black_Tool_Installing()
elif choose == '6':
webinfo()
elif choose == '7':
soial_Enginner()
elif choose == '8':
DDos_Attack()
elif choose == '9':
wirless_Attack()
elif choose == '0':
developer()
elif choose == '99':
ext()
elif choose == '' or choose == ' ':
black()
else:
cls()
print(choose + color.red + " Not Found!" + color.End)
try1()
def webhacking():
cls()
print(color.blue)
os.system("figlet Web Hacking")
print(color.End)
print("\n{1}.brute-Force")
print("{2}.bruteX")
print("{3}.Brute-Boom")
print("{4}.Bruter")
print("{5}.FaceBook-Bruteforce")
print("{6}.WebHacking")
print("{99}.mein menu")
choose2 = input(opt)
if choose2 == '1':
cls()
os.system("git clone https://github.com/mrprogrammer2938/Brute-Force")
try2()
elif choose2 == '2':
cls()
os.system("git clone https://github.com/1N3/BruteX")
try2()
elif choose2 == '3':
cls()
os.system("git clone https://github.com/Oseid/FaceBoom")
try2()
elif choose2 == '4':
cls()
os.system("git clone https://github.com/AzizKpln/Bruter19")
try2()
elif choose2 == '5':
cls()
os.system("git clone https://github.com/IAmBlackHacker/Facebook-BruteForce")
try2()
elif choose2 == '6':
cls()
os.system("https://github.com/yan4ikyt/webhack")
try2()
elif choose2 == '99':
black()
def wirless_Attack():
cls()
print(color.blue)
os.system("figlet Wirless Attack")
print(color.End)
print("\n{1}.wifite")
print("{2}.Airattackit")
print("{3}.wifispy")
print("{4}.wifi-God")
print("{5}.wifi-cracker")
print("{99}.mein menu")
choose5 = input(opt)
if choose5 == '1':
cls()
os.system("git clone https://github.com/derv82/wifite")
try10()
elif choose5 == '2':
cls()
os.system("git clone https://github.com/JoyGhoshs/Airattackit")
elif choose5 == '3':
cls()
os.system("git clone https://github.com/AresS32/wirespy")
try10()
elif choose5 == '4':
cls()
os.system("git clone https://github.com/waseem-sajjad/WifiGod")
try10()
elif choose5 == '5':
cls()
os.system("git clone https://github.com/brannondorsey/wifi-cracking")
try10()
elif choose5 == '99':
black()
else:
wirless_Attack()
def Phishing():
cls()
print(color.blue)
os.system("figlet Phishing")
print(color.End)
print("\n{1}.setoolkit")
print("{2}.zphisher")
print("{3}.nex-Phisher")
print("{4}.Social Phish")
print("{5}.Black-phish")
print("{6}.Phish-Mailer")
print("{99}.mein menu")
choose4 = input(opt)
if choose4 == '1':
cls()
os.system("git clone https://github.com/trustedsec/social-engineer-toolkit/ setoolkit/")
try3()
elif choose4 == '2':
cls()
os.system("git clone https://github.com/htr-tech/zphisher")
try3()
elif choose4 == '3':
cls()
os.system("git clone https://github.com/htr-tech/nexphisher")
try3()
elif choose4 == '4':
cls()
os.system("git clone https://github.com/xHak9x/SocialPhish")
try3()
elif choose4 == '5':
cls()
os.system("git clone https://github.com/iinc0gnit0/BlackPhish")
try3()
elif choose4 == '6':
cls()
os.system("git clone https://github.com/BiZken/PhishMailer")
try3()
elif choose4 == '99':
black()
else:
Phishing()
def DDos_Attack():
cls()
print(color.blue)
os.system("figlet DDos Attack")
print(color.End)
print("\n{1}.DDos-Attack")
print("{2}.hammer")
print("{3}.Liteddos")
print("{4}.Rave-Tool")
print("{5}.DDos-Attack-Mrx")
print("{99}.mein menu")
choose8 = input(opt)
if choose8 == '1':
cls()
os.system("git clone https://github.com/mrprogrammer2938/DDos-Attack")
try9()
elif choose8 == '2':
cls()
os.system("git clone https://github.com/cyweb/hammer")
try9()
elif choose8 == '3':
cls()
os.system("git clone https://github.com/4L13299/LITEDDOS")
try9()
elif choose8 == '4':
cls()
os.system("git clone https://github.com/Taguar258/Raven-Storm/ Rave-Tool/")
try9()
elif choose8 == '5':
cls()
os.system("git clone https://github.com/Ha3MrX/DDos-Attack/ DDos-Attack-Mrx/")
try9()
elif choose8 == '99':
black()
else:
DDos_Attack()
def webinfo():
cls()
print(color.blue)
os.system("figlet Web Info")
print(color.End)
print("\n{1}.Web-Info")
print("{2}.setookit")
print("{3}.webkiller")
print("{4}.web informtion")
print("{5}.Th3inspector")
print("{99}.main menu")
choose6 = input(opt)
if choose6 == '1':
cls()
os.system("git clone https://github.com/mrprogrammer2938/Web-Info")
try7()
elif choose6 == '2':
cls()
os.system("git clone https://github.com/trustedsec/social-engineer-toolkit")
try7()
elif choose6 == '3':
cls()
os.system("git clone https://github.com/ultrasecurity/webkiller")
try7()
elif choose6 == '4':
cls()
os.system("git clone https://github.com/zahidin/web-information-gathering")
try7()
elif choose6 == '5':
cls()
os.system("git clone https://github.com/Moham3dRiahi/Th3inspector")
try7()
elif choose6 == '99':
black()
else:
webinfo()
def soial_Enginner():
cls()
print(color.blue)
os.system("figlet social Engineer")
print(color.End)
print("\n{1}.setoolkit")
print("{2}.focial")
print("{3}.fluxion")
print("{4}.Insta Hack")
print("{99}.mein menu")
choose7 = input(opt)
if choose7 == '1':
cls()
os.system("git clone https://github.com/trustedsec/social-engineer-toolkit/ setoolkit/")
try8()
elif choose7 == '2':
cls()
os.system("git clone https://github.com/v2-dev/awesome-social-engineering/ focial/")
try8()
elif choose7 == '3':
cls()
os.system("git clone https://github.com/FluxionNetwork/fluxion")
try8()
elif choose7 == '4':
cls()
os.system("git clone https://github.com/fuck3erboy/instahack")
try8()
elif choose7 == '99':
black()
else:
soial_Enginner()
def camhack():
cls()
print(color.blue)
os.system("figlet Cam Hacking")
print(color.End)
print("\n{1}.Cam-Hackers")
print("{2}.Cam-Hack-ang")
print("{3}.say cheese")
print("{4}.say Master")
print("{5}.Cam-Phish")
print("{99}.mein menu")
choose3 = input(opt)
if choose3 == '1':
cls()
os.system("git clone https://github.com/mrprogrammer2938/Cam-Hackers")
try4()
elif choose3 == '2':
cls()
os.system("git clone https://github.com/AngelSecurityTeam/Cam-Hackers")
try4()
elif choose3 == '3':
cls()
os.system("git clone https://github.com/keralahackers/saycheese")
try4()
elif choose3 == '4':
cls()
os.system("git clone https://github.com/joshkar/SayMaster")
try4()
elif choose3 == '5':
cls()
os.system("git clone https://github.com/techchipnet/CamPhish/ Cam-Phish/")
try4()
elif choose3 == '99':
black()
else:
camhack()
def developer():
cls()
os.system("figlet -f slant Black-Tool | lolcat")
print(color.red + "\nThis Programm write by " + color.green+ "Mr.nope" + color.End)
time.sleep(0.50)
print(color.blue+ "\nVersion: " + color.cyan + "1.5" + color.End)
time.sleep(0.25)
print(color.yellow + "\nGithub: " + color.line + "https://github.com/mrprogrammer2938" + color.End)
time.sleep(0.25)
try1()
def black_Tool_Installing():
cls()
print(banner + "\n")
install = subprocess.getoutput("git clone https://github.com/mrprogrammer2938/Black-Tool")
print("--------------------------------\n")
print(install)
print("\n------------------------------\n")
print(color.green+ "Black-Tool Installed!" + color.End)
time.sleep(0.25)
try1()
def hacktool():
cls()
print(color.blue)
os.system("figlet Hacking Tools")
print(color.End)
print("\n{1}.Hacking-Tools")
print("{2}.Hack-Tools")
print("{3}.fsociety")
print("{4}.PTool")
print("{5}.onex")
print("{6}.Kit Hack")
print("{7].Hacking")
print("{8}.M3MO")
print("{99}.mein menu")
choose7 = input(opt)
if choose7 == '1':
cls()
os.system("git clone https://github.com/mrprogrammer2938/hackingtools")
try5()
elif choose7 == '2':
cls()
os.system("git clone https://github.com/Z4nzu/hackingtool")
try5()
elif choose7 == '3':
cls()
os.system("git clone https://github.com/Manisso/fsociety")
try5()
elif choose7 == '4':
cls()
os.system("git clone https://github.com/mrprogrammer2938/PTool")
try6()
elif choose7 == '5':
cls()
os.system("git clone https://github.com/rajkumardusad/onex")
try5()
elif choose7 == '6':
cls()
os.system("git clone https://github.com/AdrMXR/KitHack")
try5()
elif choose7 == '7':
cls()
os.sytem("git clone https://github.com/Ha3MrX/Hacking")
try5()
elif choose7 == '8':
cls()
os.system("git clone https://github.com/mrwn007/M3M0")
try5()
elif choose7 == '99':
black()
else:
hacktool()
def try1():
try_to_menu1 = input(color.End + "\npress Enter..." + color.End)
if try_to_menu1 == '':
black()
else:
black()
def try2():
try_to_menu_2 = input("\npress Enter...")
if try_to_menu_2 == '':
webhacking()
else:
webhacking()
def try3():
try_to_menu_3 = input("\npress Enter...")
if try_to_menu_3 == '':
Phishing()
else:
Phishing()
def try4():
try_to_menu_4 = input("\npress Enter...")
if try_to_menu_4 == '':
camhack()
else:
camhack()
def try5():
try_to_menu_5 = input("\npress Enter...")
if try_to_menu_5 == '':
hacktool()
else:
hacktool()
def try6():
try_to_menu_6 = input("\npress Enter...")
if try_to_menu_6 == '':
black_Tool_Installing()
else:
black_Tool_Installing()
def try7():
try_to_menu_7 = input("\npress Enter...")
if try_to_menu_7 == '':
webinfo()
else:
webinfo()
def try8():
try_to_menu_8 = input("\npress Enter...")
if try_to_menu_8 == '':
soial_Enginner()
else:
soial_Enginner()
def try9():
try_to_menu_9 = input('\npress Enter...')
if try_to_menu_9 == '':
DDos_Attack()
else:
DDos_Attack()
def try10():
try_to_menu_10 = input("\npress Enter...")
if try_to_menu_10 == '':
wirless_Attack()
else:
wirless_Attack()
def ext():
cls()
print(color.green+ "Exiting..." + color.End)
sys.exit()
# ------------------------------------
if __name__ == '__main__':
try:
try:
black()
except EOFError:
print("\nCtrl + D")
print("\nExiting...")
sys.exit()
except KeyboardInterrupt:
print("\nCtrl + C")
print("\nExiting...")
sys.exit()