forked from Z4nzu/hackingtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hackingtool.py
3081 lines (2377 loc) · 112 KB
/
hackingtool.py
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##!/usr/bin/env python3
# -*- coding: UTF-8 -*-
# Version 1.1.0
import os
import sys
import webbrowser
import socket
from time import sleep
from platform import system
logo = """\033[33m
▄█ █▄ ▄████████ ▄████████ ▄█ ▄█▄ ▄█ ███▄▄▄▄ ▄██████▄ ███ ▄██████▄ ▄██████▄ ▄█
███ ███ ███ ███ ███ ███ ███ ▄███▀ ███ ███▀▀▀██▄ ███ ███ ▀█████████▄ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ █▀ ███▐██▀ ███▌ ███ ███ ███ █▀ ▀███▀▀██ ███ ███ ███ ███ ███
▄███▄▄▄▄███▄▄ ███ ███ ███ ▄█████▀ ███▌ ███ ███ ▄███ ███ ▀ ███ ███ ███ ███ ███
▀▀███▀▀▀▀███▀ ▀███████████ ███ ▀▀█████▄ ███▌ ███ ███ ▀▀███ ████▄ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ █▄ ███▐██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ ███ ███ ▀███▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███▌ ▄
███ █▀ ███ █▀ ████████▀ ███ ▀█▀ █▀ ▀█ █▀ ████████▀ ▄████▀ ▀██████▀ ▀██████▀ █████▄▄██
▀ ▀
\033[34m[✔] https://github.com/Z4nzu/hackingtool [✔]
\033[34m[✔] Version 1.1.0 [✔]
\033[91m[X] Please Don't Use For illegal Activity [X]
\033[97m """
class Main:
def __init__(self):
self.logo = logo
def check_input(self, word, function, keys):
if word == "":
self.clear_scr()
function()
if not word in keys:
print('\033[91m Unknown Value..')
sleep(1)
self.clear_scr()
function()
def menu(self):
self.clear_scr()
print(self.logo + """\033[0m
\033[97m
[00] AnonSurf
[01] Information Gathering
[02] Wordlist Generator
[03] Wireless Attack
[04] SQL Injection Tools
[05] Phishing Attack
[06] Web Attack Tool
[07] Post exploitation
[08] Forensic Tools
[09] Payload Creator
[10] Exploit Frameworks
[11] Reverse Engineering
[12] Ddos Attack Tools
[13] Remote Administartor Tools
[14] XSS Attack Tools
[15] Steganography
[16] More Tools
[17] Update or Uninstall | Hackingtool
[99] Exit
""")
functions_menu = {
'00':self.anonsurf,
'01':self.info,
'02':self.passwd,
'03':self.wire,
'04':self.sqltool,
'05':self.phishattack,
'06':self.webAttack,
'07':self.postexp,
'08':self.forensic,
'09':self.payloads,
'10':self.routexp,
'11':self.reversetool,
'12':self.ddos,
'13':self.rattools,
'14':self.xsstools,
'15':self.steganography,
'16':self.others,
'17':self.update,
'99':self.exit_app
}
choice = input("Z4nzu =>> ")
if len(choice) == 1:
choice = '0' + choice
self.check_input(choice, self.menu, functions_menu.keys())
functions_menu[choice]()
def clear_scr(self):
if system() == 'Linux':
os.system('clear')
if system() == 'Windows':
os.system('cls')
def exit_app(self):
print("Happy Hacking...")
sleep(1)
self.clear_scr()
sys.exit()
###########OPTION[0]############
def anonsurf(self):
self.clear_scr()
os.system("figlet -f standard -c Anonmously Hiding Tool | lolcat")
print("""
[1] Anonmously Surf
[2] Multitor
[99] Back
""")
functions_anonsurf = {
'1':self.ansurf,
'2':self.multitor,
'99':self.menu
}
choice = input("Z4nzu =>> ")
self.check_input(choice, self.anonsurf, functions_anonsurf.keys())
functions_anonsurf[choice]()
def ansurf(self):
self.clear_scr()
os.system("echo \"It automatically overwrites the RAM when\nthe system is shutting down AnD AlSo change Ip. \" |boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [3]Stop [99]Main Menu >> ")
self.check_input(choice, self.ansurf, ['1', '2', '3', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Und3rf10w/kali-anonsurf.git")
os.system("cd kali-anonsurf && sudo ./installer.sh && cd .. && sudo rm -r kali-anonsurf")
self.ansurf()
if choice == '2':
os.system("sudo anonsurf start")
self.ansurf()
if choice == '3':
os.system("sudo anonsurf stop")
self.ansurf()
if choice == "99":
self.menu()
def multitor(self):
self.clear_scr()
os.system("echo \"How to stay in multi places at the same time\n [!]https://github.com/trimstray/multitor \" | boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.multitor, ['1', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/trimstray/multitor")
os.system("cd multitor;sudo bash setup.sh install")
self.multitor()
if choice == "99":
self.anonsurf()
##################OPTION[1]########################
def info(self):
self.clear_scr()
os.system("figlet -f standard -c Information Gathering Tools | lolcat")
print("""
[1] Nmap
[2] Dracnmap
[3] Port Scanning
[4] Host To IP
[5] Xerosploit
[6] RED HAWK (All In One Scanning)
[7] ReconSpider(For All Scaning)
[8] IsItDown (Check Website Down/Up)
[9] Infoga - Email OSINT
[10] ReconDog
[11] Striker
[12] SecretFinder (like API & etc)
[13] Find Info Using Shodan
[14] Port Scanner
[15] Breacher
[99] Back To Main Menu
""")
functions_info = {
'1':self.nmap,
'2':self.dracnmap,
'3':self.ports,
'4':self.h2ip,
'5':self.xerosploit,
'6':self.redhawk,
'7':self.reconspider,
'8':self.isitdown,
'9':self.infogaemail,
'10':self.recondog,
'11':self.striker,
'12':self.secretfinder,
'13':self.shodantool,
'14':self.portscanner,
'15':self.breacher,
'99':self.menu
}
choice = input("Z4nzu =>> ")
self.check_input(choice, self.info, functions_info.keys())
functions_info[choice]()
def nmap(self):
self.clear_scr()
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.nmap, ['1', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/nmap/nmap.git")
os.system("sudo chmod -R 755 nmap && cd nmap && sudo ./configure && make && sudo make install")
self.nmap()
if choice == "99":
self.info()
def dracnmap(self):
self.clear_scr()
os.system("echo \"Dracnmap is an open source program which is using to \nexploit the network and gathering information with nmap help \n [!]https://github.com/Screetsec/Dracnmap \" | boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.dracnmap, ['1', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Screetsec/Dracnmap.git ")
os.system("cd Dracnmap && chmod +x Dracnmap.sh")
self.dracnmap()
if choice == "99":
self.info()
def ports(self):
self.clear_scr()
target = input('Select a Target IP: ')
os.system(f"sudo nmap -O -Pn {target}")
input('\nPress Enter to back...')
self.info()
def h2ip(self):
self.clear_scr()
host = input("Enter host name (www.google.com):- ")
ips = socket.gethostbyname(host)
print(ips)
input('\nPress Enter to back...')
self.info()
def xerosploit(self):
self.clear_scr()
os.system("echo \"Xerosploit is a penetration testing toolkit whose goal is to perform \n man-in-th-middle attacks for testing purposes\"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.xerosploit, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/LionSec/xerosploit")
os.system("cd xerosploit && sudo python install.py")
self.xerosploit()
if choice == "2":
os.system("sudo xerosploit")
self.xerosploit()
if choice == "99":
self.info()
def redhawk(self):
self.clear_scr()
os.system("echo \"All in one tool for Information Gathering and Vulnerability Scanning. \n [!]https://github.com/Tuhinshubhra/RED_HAWK \n\n [!]Please Use command [FIX] After Running Tool first time \" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.redhawk, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/Tuhinshubhra/RED_HAWK")
self.redhawk()
if choice == "2":
os.system("cd RED_HAWK;php rhawk.php")
self.redhawk()
if choice == "99":
self.info()
def reconspider(self):
self.clear_scr()
os.system("echo \" ReconSpider is most Advanced Open Source Intelligence (OSINT) Framework for scanning IP Address, Emails, \nWebsites, Organizations and find out information from different sources.\n:~python3 reconspider.py \n\t [!]https://github.com/bhavsec/reconspider \" | boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.reconspider, ['1', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/bhavsec/reconspider.git")
os.system("sudo apt install python3 python3-pip && cd reconspider && sudo python3 setup.py install")
self.reconspider()
# elif choice == "2":
# os.system("cd reconspider && python3 reconspider.py")
if choice == "99":
self.info()
def isitdown(self):
self.clear_scr()
os.system("echo \"Check Website Is Online or Not \"|boxes -d boy | lolcat")
choice = input("[1]Open [99]Back >> ")
self.check_input(choice, self.isitdown, ['1', '99'])
if choice == "1":
webbrowser.open_new_tab("https://www.isitdownrightnow.com/")
self.isitdown()
if choice == "99":
self.info()
def infogaemail(self):
self.clear_scr()
os.system("echo \"Infoga is a tool gathering email accounts informations\n(ip, hostname, country,...) from different public source \n[!]https://github.com/m4ll0k/Infoga \"| boxes -d boy |lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.infogaemail, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/m4ll0k/Infoga.git")
os.system("cd infoga;sudo python setup.py install")
self.infogaemail()
if choice == "2":
os.system("cd infoga;python infoga.py")
self.infogaemail()
if choice == "99":
self.info()
def recondog(self):
self.clear_scr()
os.system("echo \"ReconDog Information Gathering Suite \n[!]https://github.com/s0md3v/ReconDog \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.recondog, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/s0md3v/ReconDog.git ")
self.recondog()
if choice == "2":
os.system("cd ReconDog;sudo python dog")
self.recondog()
if choice == "99":
self.info()
def striker(self):
self.clear_scr()
os.system("echo \"Recon & Vulnerability Scanning Suite [!]https://github.com/s0md3v/Striker \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.striker, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/s0md3v/Striker.git")
os.system("cd Striker && pip3 install -r requirements.txt")
self.striker()
if choice == "2":
site = input("Enter Site Name (example.com) >> ")
os.system(f"cd Striker && sudo python3 striker.py {site}")
self.striker()
if choice == "99":
self.info()
def secretfinder(self):
self.clear_scr()
os.system("echo \"SecretFinder - A python script for find sensitive data \nlike apikeys, accesstoken, authorizations, jwt,..etc \n and search anything on javascript files.\n\n Usage: python SecretFinder.py -h \n\t [*]https://github.com/m4ll0k/SecretFinder \"|boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.secretfinder, ['1', '99'])
if choice == "1":
os.system("git clone https://github.com/m4ll0k/SecretFinder.git secretfinder")
os.system("cd secretfinder; sudo pip3 install -r requirements.txt")
self.secretfinder()
if choice == "99":
self.info()
def shodantool(self):
self.clear_scr()
os.system("echo \"Get ports,vulnerabilities,informations,banners,..etc \n for any IP with Shodan (no apikey! no rate limit!)\n[X]Don't use this tool because your ip will be blocked by Shodan![X] \n\t [!]https://github.com/m4ll0k/Shodanfy.py \"|boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.shodantool, ['1', '99'])
if choice == "1":
os.system("git clone https://github.com/m4ll0k/Shodanfy.py.git")
self.shodantool()
if choice == "99":
self.info()
def portscanner(self):
self.clear_scr()
os.system("echo \"rang3r is a python script which scans in multi thread\n all alive hosts within your range that you specify.\n\t [!]https://github.com/floriankunushevci/rang3r \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.portscanner, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/floriankunushevci/rang3r;sudo pip install termcolor")
self.portscanner()
if choice == "2":
ip = input("Enter Ip >> ")
os.system(f"cd rang3r;sudo python rang3r.py --ip {ip}")
self.portscanner()
if choice == "99":
self.info()
def breacher(self):
self.clear_scr()
os.system("echo \"An advanced multithreaded admin panel finder written in python.\n Usage: python breacher -u example.com \n\t [!]https://github.com/s0md3v/Breacher \"|boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.breacher, ['1', '99'])
if choice == "1":
os.system("git clone https://github.com/s0md3v/Breacher.git")
self.breacher()
if choice == "99":
self.info()
## == Wordlist Functions ==
def passwd(self):
self.clear_scr()
os.system("figlet -f standard -c Wordlist Generator | lolcat")
print("""
[1] Cupp
[2] WordlistCreator
[3] Goblin WordGenerator
[4] Password list((1.4 Billion Clear Text Password))
[5]
[99] Back To Main Menu
""")
functions_passwd = {
'1':self.cupp,
'2':self.wlcreator,
'3':self.goblinword,
# '4':self.credentialattack,
'4':self.showme,
'99':self.menu
}
choice = input("Z4nzu =>> ")
self.check_input(choice, self.passwd, functions_passwd.keys())
functions_passwd[choice]()
def cupp(self):
self.clear_scr()
os.system("echo \"Common User Password Generator..!!\"| boxes -d boy | lolcat ")
choice = input("[1]Install [99]Back >> ")
self.check_input(choice, self.cupp, ['1', '99'])
if choice == "1":
os.system("git clone https://github.com/Mebus/cupp.git")
self.cupp()
# if choice == "2":
# os.system("cd cupp && ./cupp.py -h")
if choice == "99":
self.passwd()
def wlcreator(self):
self.clear_scr()
os.system("echo \" WlCreator is a C program that can create all possibilities of passwords,\n and you can choose Lenght, Lowercase, Capital, Numbers and Special Chars\" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.wlcreator, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Z4nzu/wlcreator")
self.wlcreator()
if choice == "2":
os.system("cd wlcreator && sudo gcc -o wlcreator wlcreator.c && ./wlcreator 5")
self.wlcreator()
if choice == "99":
self.passwd()
def goblinword(self):
self.clear_scr()
os.system("echo \" GoblinWordGenerator \" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.goblinword, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/UndeadSec/GoblinWordGenerator.git")
self.goblinword()
if choice == "2":
os.system("cd GoblinWordGenerator && python3 goblin.py")
self.goblinword()
if choice == "99":
self.passwd()
def showme(self):
self.clear_scr()
print("""
[*] This tool allows you to perform OSINT and reconnaissance on an organisation or an individual.
It allows one to search 1.4 Billion clear text credentials which was dumped as part of BreachCompilation
leak This database makes finding passwords faster and easier than ever before.
""")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.showme, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Viralmaniar/SMWYG-Show-Me-What-You-Got.git")
os.system("cd SMWYG-Show-Me-What-You-Got && pip3 install -r requirements.txt ")
self.showme()
if choice == "2":
os.system("cd SMWYG-Show-Me-What-You-Got && python SMWYG.py")
self.showme()
if choice == "99":
self.passwd()
## Wireless Attack =====
def wire(self):
self.clear_scr()
os.system("figlet -f standard -c Wireless Attack Tools | lolcat")
print("""
[1] WiFi-Pumpkin
[2] pixiewps
[3] Bluetooth Honeypot GUI Framework
[4] Fluxion
[5] Wifiphisher
[6] Wifite
[7] EvilTwin
[8] Fastssh
[9] Howmanypeople
[99] Back To The Main Menu """)
functions_wire = {
'1':self.wifipumkin,
'2':self.pixiewps,
'3':self.bluepot,
'4':self.fluxion,
'5':self.wifiphisher,
'6':self.wifite,
'7':self.eviltwin,
'9':self.howmanypeople,
'8':self.fastssh,
'99':self.menu
}
choice = input("Z4nzu =>> ")
self.check_input(choice, self.wire, functions_wire.keys())
functions_wire[choice]()
def fastssh(self):
self.clear_scr()
os.system("echo \"Fastssh is an Shell Script to perform multi-threaded scan \n and brute force attack against SSH protocol using the most commonly credentials. \" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.fastssh, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Z4nzu/fastssh && cd fastssh && sudo chmod +x fastssh.sh")
os.system("sudo apt-get install -y sshpass netcat")
self.fastssh()
if choice == "2":
os.system("cd fastssh && sudo bash fastssh.sh --scan")
self.fastssh()
if choice == "99":
self.wire()
def wifipumkin(self):
self.clear_scr()
os.system("echo \"The WiFi-Pumpkin is a rogue AP framework to easily create these fake networks\nall while forwarding legitimate traffic to and from the unsuspecting target.\"| boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.wifipumkin, ['1', '2', '99'])
if choice == "1":
os.system("sudo apt install libssl-dev libffi-dev build-essential")
os.system("sudo git clone https://github.com/P0cL4bs/wifipumpkin3.git")
os.system("chmod -R 755 wifipumpkin3 && cd wifipumpkin3")
os.system("sudo apt install python3-pyqt5 ")
os.system("sudo python3 setup.py install")
self.wifipumkin()
if choice == "2":
os.system("sudo wifipumpkin3")
self.wifipumkin()
if choice == "99":
self.wire()
def pixiewps(self):
self.clear_scr()
os.system("echo \"Pixiewps is a tool written in C used to bruteforce offline the WPS pin\n exploiting the low or non-existing entropy of some Access Points, the so-called pixie dust attack\"| boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.pixiewps, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/wiire/pixiewps.git && apt-get -y install build-essential")
os.system("cd pixiewps*/ && make ")
os.system("cd pixiewps*/ && sudo make install && wget https://pastebin.com/y9Dk1Wjh")
self.pixiewps()
if choice == "2":
os.system("echo \"1.>Put your interface into monitor mode using 'airmon-ng start {wireless interface}\n2.>wash -i {monitor-interface like mon0}'\n3.>reaver -i {monitor interface} -b {BSSID of router} -c {router channel} -vvv -K 1 -f\"| boxes -d boy")
print("You Have To Run Manually By USing >>pixiewps -h ")
self.pixiewps()
if choice == "99":
self.wire()
def bluepot(self):
self.clear_scr()
os.system("echo \"you need to have at least 1 bluetooh receiver (if you have many it will work wiht those, too).\nYou must install/libbluetooth-dev on Ubuntu/bluez-libs-devel on Fedora/bluez-devel on openSUSE\"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.bluepot, ['1', '2', '99'])
if choice == "1":
os.system("wget https://github.com/andrewmichaelsmith/bluepot/raw/master/bin/bluepot-0.1.tar.gz && tar xfz bluepot-0.1.tar.gz && sudo java -jar bluepot/BluePot-0.1.jar")
self.bluepot()
if choice == "2":
os.system("cd bluepot-0.1 && sudo java -jar bluepot/BluePot-0.1.jar")
self.bluepot()
if choice == "99":
self.wire()
def fluxion(self):
self.clear_scr()
os.system("echo \"Fluxion is a wifi key cracker using evil twin attack..\nyou need a wireless adaptor for this tool\"| boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.fluxion, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/thehackingsage/Fluxion.git")
os.system("cd Fluxion && cd install && sudo chmod +x install.sh && sudo bash install.sh")
os.system("cd .. ; sudo chmod +x fluxion.sh")
self.fluxion()
if choice == "2":
os.system("cd Fluxion;sudo bash fluxion.sh")
self.fluxion()
if choice == "99":
self.wire()
def wifiphisher(self):
self.clear_scr()
print("""
Wifiphisher is a rogue Access Point framework for conducting red team engagements or Wi-Fi security testing.
Using Wifiphisher, penetration testers can easily achieve a man-in-the-middle position against wireless clients by performing
targeted Wi-Fi association attacks. Wifiphisher can be further used to mount victim-customized web phishing attacks against the
connected clients in order to capture credentials (e.g. from third party login pages or WPA/WPA2 Pre-Shared Keys) or infect the
victim stations with malware..\n
For More Details Visit >> https://github.com/wifiphisher/wifiphisher
""")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.wifiphisher, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/wifiphisher/wifiphisher.git")
os.system("cd wifiphisher;sudo python3 setup.py install")
self.wifiphisher()
if choice == "2":
os.system("cd wifiphisher;sudo wifiphisher")
if choice == "99":
self.wire()
def wifite(self):
self.clear_scr()
os.system("echo \"[!]https://github.com/derv82/wifite2 \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.wifite, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/derv82/wifite2.git")
os.system("cd wifite2 && sudo python3 setup.py install ; sudo pip3 install -r requirements.txt")
self.wifite()
if choice == "2":
os.system("cd wifite2; sudo wifite")
self.wifite()
if choice == "99":
self.wire()
def eviltwin(self):
self.clear_scr()
os.system("echo \"Fakeap is a script to perform Evil Twin Attack, by getting credentials using a Fake page and Fake Access Point \" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.eviltwin, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Z4nzu/fakeap")
self.eviltwin()
if choice == "2":
os.system("cd fakeap && sudo bash fakeap.sh")
self.eviltwin()
if choice == "99":
self.wire()
def howmanypeople(self):
self.clear_scr()
os.system("echo \"Count the number of people around you by monitoring wifi signals.\n[@]WIFI ADAPTER REQUIRED* \n[*]It may be illegal to monitor networks for MAC addresses, \nespecially on networks that you do not own. Please check your country's laws\n\t [!]https://github.com/An0nUD4Y/howmanypeoplearearound \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.howmanypeople, ['1', '2', '99'])
if choice == "1":
os.system("sudo apt-get install tshark;sudo pip install howmanypeoplearearound")
self.howmanypeople()
if choice == "2":
os.system("sudo howmanypeoplearearound")
self.howmanypeople()
if choice == "99":
self.wire()
## PHISHING ATTACK START ###
def phishattack(self):
self.clear_scr()
os.system("figlet -f standard -c Phishing Attack Tools | lolcat")
print("""
[1] Setoolkit
[2] SocialFish
[3] HiddenEye
[4] Evilginx2
[5] I-See_You(Get Location using phishing attack)
[6] SayCheese (Grab target's Webcam Shots)
[7] QR Code Jacking
[8] ShellPhish
[9] BlackPhish
[99] Back To Main Menu
""")
functions_phishattack = {
'1':self.setoolkit,
'2':self.socialfish,
'3':self.hiddeneye,
'4':self.evilginx,
'5':self.iseeyou,
'6':self.saycheese,
'7':self.qrjacking,
'8':self.shellphish,
'9':self.blackphish,
'99':self.menu
}
choice = input("Z4nzu =>> ")
self.check_input(choice, self.phishattack, functions_phishattack.keys())
functions_phishattack[choice]()
def blackphish(self):
self.clear_scr()
os.system("echo \"BlackPhish [!]https://github.com/iinc0gnit0/BlackPhish \" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [3]Update [99]Back >> ")
self.check_input(choice, self.blackphish, ['1', '2','3', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/iinc0gnit0/BlackPhish ")
os.system("cd BlackPhish;sudo bash install.sh")
self.blackphish()
if choice == "2":
os.system("cd BlackPhish;sudo python3 blackphish.py")
if choice == "3":
os.system("cd BlackPhish;sudo bash update.sh")
if choice == "99":
self.phishattack()
def setoolkit(self):
self.clear_scr()
os.system("echo \"The Social-Engineer Toolkit is an open-source penetration\ntesting framework designed for social engineering\"| boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.setoolkit, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/trustedsec/social-engineer-toolkit.git")
os.system("sudo python social-engineer-toolkit/setup.py")
self.setoolkit()
if choice == "2":
self.clear_scr()
os.system("sudo setoolkit")
self.setoolkit()
if choice == "99":
self.phishattack()
def socialfish(self):
self.clear_scr()
os.system("echo \"Automated Phishing Tool & Information Collector \n\t[!]https://github.com/UndeadSec/SocialFish \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.socialfish, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/UndeadSec/SocialFish.git && sudo apt-get install python3 python3-pip python3-dev -y")
os.system("cd SocialFish && sudo python3 -m pip install -r requirements.txt")
self.socialfish()
if choice == "2":
os.system("cd SocialFish && sudo python3 SocialFish.py root pass")
self.socialfish()
if choice == "99":
self.phishattack()
def hiddeneye(self):
self.clear_scr()
os.system("echo \"Modern Phishing Tool With Advanced Functionality And Multiple Tunnelling Services \n\t [!]https://github.com/DarkSecDevelopers/HiddenEye \"|boxes -d boy | lolcat ")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.hiddeneye, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/DarkSecDevelopers/HiddenEye.git ;sudo chmod 777 HiddenEye")
os.system("cd HiddenEye;sudo pip3 install -r requirements.txt;sudo pip3 install requests;pip3 install pyngrok")
self.hiddeneye()
if choice == "2":
os.system("cd HiddenEye;sudo python3 HiddenEye.py")
self.hiddeneye()
if choice == "99":
self.phishattack()
def evilginx(self):
self.clear_scr()
os.system("echo \"evilginx2 is a man-in-the-middle attack framework used for phishing login credentials along with session cookies,\nwhich in turn allows to bypass 2-factor authentication protection.\n\n\t [+]Make sure you have installed GO of version at least 1.14.0 \n[+]After installation, add this to your ~/.profile, assuming that you installed GO in /usr/local/go\n\t [+]export GOPATH=$HOME/go \n [+]export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin \n[+]Then load it with source ~/.profiles.\n [*]https://github.com/An0nUD4Y/evilginx2 \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.evilginx, ['1', '2', '99'])
if choice == "1":
os.system("sudo apt-get install git make;go get -u github.com/kgretzky/evilginx2")
os.system("cd $GOPATH/src/github.com/kgretzky/evilginx2;make")
os.system("sudo make install;sudo evilginx")
self.evilginx()
if choice == "2":
os.system("sudo evilginx")
self.evilginx()
if choice == "99":
self.phishattack()
def iseeyou(self):
self.clear_scr()
os.system("echo \"[!] ISeeYou is a tool to find Exact Location of Victom By User SocialEngineering or Phishing Engagment..\n[!]Users can expose their local servers to the Internet and decode the location coordinates by looking at the log file\"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.iseeyou, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/Viralmaniar/I-See-You.git")
os.system("cd I-See-You && sudo chmod u+x ISeeYou.sh")
self.iseeyou()
if choice == "2":
os.system("cd I-See-You && sudo bash ISeeYou.sh")
self.iseeyou()
if choice == "99":
self.phishattack()
def saycheese(self):
self.clear_scr()
os.system("echo \"Take webcam shots from target just sending a malicious link\"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.saycheese, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/hangetzzu/saycheese")
self.saycheese()
if choice == "2":
os.system("cd saycheese && sudo bash saycheese.sh")
self.saycheese()
if choice == "99":
self.phishattack()
def qrjacking(self):
self.clear_scr()
os.system("echo \"QR Code Jacking (Any Website) \" | boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.qrjacking, ['1', '2', '99'])
if choice == "1":
os.system("sudo git clone https://github.com/cryptedwolf/ohmyqr && sudo apt-get install scrot")
self.qrjacking()
if choice == "2":
os.system("cd ohmyqr && sudo bash ohmyqr.sh")
self.qrjacking()
if choice == "99":
self.phishattack()
def shellphish(self):
self.clear_scr()
os.system("echo \"Phishing Tool for 18 social media \n\t[!]https://github.com/An0nUD4Y/shellphish \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
self.check_input(choice, self.shellphish, ['1', '2', '99'])
if choice == "1":
os.system("git clone https://github.com/An0nUD4Y/shellphish")
self.shellphish()
if choice == "2":
os.system("cd shellphish;sudo bash shellphish.sh")
self.shellphish()
if choice == "99":
self.phishattack()
### Forensic Tools ####
def forensic(self):
self.clear_scr()
os.system("figlet -f standard Forensic Tools | lolcat ")
print("""
[1] Autopsy
[2] Wireshark
[3] Bulk_extractor
[4] Disk Clone and ISO Image Aquire
[5] Toolsley
[99] Back to Menu
""")
functions_forensic = {
'1':self.autopsy,
'2':self.wireshark,
'3':self.bulkextractor,
'4':self.guymager,
'5':self.toolsley,
'99':self.menu
}
choice = input("Z4nzu =>> ")
self.check_input(choice, self.forensic, functions_forensic.keys())