forked from Z4nzu/hackingtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackingtool.py
2242 lines (2114 loc) · 79.3 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 -*-
import os
import sys
import argparse
import threading
import webbrowser
import requests
import time
import http.client
import urllib.request
import json
import telnetlib
import glob
import getpass
import socket
import base64
from getpass import getpass
import subprocess
from sys import argv
import random
import queue
import subprocess
import re
import getpass
from os import path
from platform import system
from urllib.parse import urlparse
from xml.dom import minidom
from optparse import OptionParser
from time import sleep
Logo="""\033[33m
▄█ █▄ ▄████████ ▄████████ ▄█ ▄█▄ ▄█ ███▄▄▄▄ ▄██████▄ ███ ▄██████▄ ▄██████▄ ▄█
███ ███ ███ ███ ███ ███ ███ ▄███▀ ███ ███▀▀▀██▄ ███ ███ ▀█████████▄ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ █▀ ███▐██▀ ███▌ ███ ███ ███ █▀ ▀███▀▀██ ███ ███ ███ ███ ███
▄███▄▄▄▄███▄▄ ███ ███ ███ ▄█████▀ ███▌ ███ ███ ▄███ ███ ▀ ███ ███ ███ ███ ███
▀▀███▀▀▀▀███▀ ▀███████████ ███ ▀▀█████▄ ███▌ ███ ███ ▀▀███ ████▄ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ █▄ ███▐██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ ███ ███ ▀███▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███▌ ▄
███ █▀ ███ █▀ ████████▀ ███ ▀█▀ █▀ ▀█ █▀ ████████▀ ▄████▀ ▀██████▀ ▀██████▀ █████▄▄██
▀ ▀
\033[97m[!] https://github.com/Z4nzu/hackingtool
\033[97m """
def menu():
print(Logo + """\033[0m
\033[91m[!] This Tool Must Run as a Root..[!] \033[97m
[00]AnonSurf
[01]Information Gathering
[02]Password Attack && 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]Router Exploit
[11]Wifi Jamming
[12]Ddos Attack Tools
[13]SocialMedia Finder
[14]XSS Attack Tools
[15]Steganography
[16]More Tools
[17]Update System OR Hackingtool
[99]Exit
""")
choice = input("Z4nzu =>> ")
if choice == "0" or choice == "00":
clearScr()
anonsurf()
elif choice == "1" or choice == "01":
clearScr()
info()
elif choice == "2" or choice == "02":
clearScr()
passwd()
elif choice == "3" or choice == "03":
clearScr()
wire()
elif choice == "4" or choice == "04":
clearScr()
sqltool()
elif choice == "5" or choice == "05":
clearScr()
phishattack()
elif choice == "6" or choice == "06":
clearScr()
webAttack()
elif choice == "7" or choice == "07":
clearScr()
postexp()
elif choice == "8" or choice == "08" :
clearScr()
forensic()
elif choice == "9" or choice == "09" :
clearScr()
payloads()
elif choice == "10":
clearScr()
routexp()
elif choice == "11" :
clearScr()
wifijamming()
elif choice == "12" :
clearScr()
Ddos()
elif choice == "13" :
clearScr()
socialfinder()
elif choice == "14":
clearScr()
xsstools()
elif choice == "15":
clearScr()
steganography()
elif choice == "16":
clearScr()
print(Logo)
others()
elif choice == "17":
clearScr()
print(Logo)
updatesys()
elif choice == "99" :
clearScr(), sys.exit()
exit()
elif choice == "":
menu()
else:
print("Wrong Input...!!")
time.sleep(1)
menu()
def anonsurf():
os.system("figlet -f standard -c Anonmously Hiding Tool | lolcat")
print("""
[1] Anonmously Surf
[2] Multitor
[99] Back
""")
choice = input("Z4nzu =>>")
if choice == "1":
clearScr()
ansurf()
elif choice == "2":
clearScr()
multitor()
elif choice == "99":
menu()
else :
menu()
def ansurf():
os.system("echo \"It automatically overwrites the RAM when\nthe system is shutting down AnD AlSo cHange Ip\" |boxes -d boy | lolcat")
anc=input("[1]install [2]Run [3]Stop [99]Main Menu >> ")
if anc == "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")
anonsurf()
elif anc=="2":
os.system("sudo anonsurf start")
elif anc == "3":
os.system("sudo anonsurf stop")
elif anc == "99":
anonsurf()
else :
menu()
def multitor():
os.system("echo \"How to stay in multi places at the same time \" | boxes -d boy | lolcat")
userchoice = input("[1]Install [2]Run [99]Back >>")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/multitor.git")
anonsurf()
elif userchoice == "2":
os.system("cd multitor && bash multitor.sh")
elif userchoice == "99":
anonsurf()
else :
menu()
def info():
clearScr()
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
[99] Back To Main Menu
""")
choice2 = input("Z4nzu =>> ")
if choice2 == "1":
nmap()
if choice2 == "2":
clearScr()
Dracnmap()
if choice2 == "3":
clearScr()
ports()
if choice2 == "4":
clearScr()
h2ip()
if choice2 == "5":
clearScr()
xerosploit()
if choice2 == "6":
clearScr()
redhawk()
elif choice2 == "7":
clearScr()
reconspider()
elif choice2 == "8":
isitdown()
elif choice2 == "9":
clearScr()
infogaemail()
elif choice2 == "99":
clearScr()
menu()
elif choice2 == "10":
clearScr()
recondog()
elif choice2 == "11":
clearScr()
striker()
elif choice2 == "":
menu()
else:
menu()
def isitdown():
os.system("echo \"Check Website Is Online or Not \"|boxes -d boy | lolcat")
choice = input("[1]Open [99]Back >> ")
if choice == "1":
webbrowser.open_new_tab("https://www.isitdownrightnow.com/")
elif choice == "99":
info()
else :
menu()
def nmap():
nmapchoice = input("[1]Install [99]BAck >> ")
if nmapchoice == "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")
info()
elif nmapchoice == "99":
info()
else:
menu()
def striker():
os.system("echo \"Recon & Vulnerability Scanning Suite [!]https://github.com/s0md3v/Striker \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("git clone https://github.com/s0md3v/Striker.git")
os.system("cd Striker && pip3 install -r requirements.txt")
info()
elif choice == "2":
tsite= input("Enter Site Name (example.com) >> ")
os.system("cd Striker && sudo python3 striker.py {0}".format(tsite))
elif choice == "99":
info()
else :
menu()
def redhawk():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/Tuhinshubhra/RED_HAWK")
info()
elif choice == "2":
os.system("cd RED_HAWK;php rhawk.php")
elif choice == "99":
info()
else :
menu()
def infogaemail():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/m4ll0k/Infoga.git")
os.system("cd infoga;sudo python setup.py install")
info()
elif choice == "2":
os.system("cd infoga;python infoga.py")
elif choice == "99":
info()
else :
menu()
def recondog():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/s0md3v/ReconDog.git ")
info()
elif choice == "2":
os.system("cd ReconDog;sudo python dog")
elif choice == "99":
info()
else :
menu()
def Dracnmap():
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")
dracnap = input("[1]Install [99]Back >> ")
if dracnap == "1":
os.system("sudo git clone https://github.com/Screetsec/Dracnmap.git ")
os.system("cd Dracnmap && chmod +x Dracnmap.sh")
info()
elif dracnap == "99":
info()
else :
menu()
def h2ip():
host = input("Enter host name(www.google.com) :- ")
ips = socket.gethostbyname(host)
print(ips)
def ports():
clearScr()
target = input('Select a Target IP : ')
os.system("sudo nmap -O -Pn %s" % target)
sys.exit()
def xerosploit():
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")
xeros=input("[1]Install [2]Run [99]Back >>")
if xeros == "1":
os.system("git clone https://github.com/LionSec/xerosploit")
os.system("cd xerosploit && sudo python install.py")
info()
elif xeros == "2":
os.system("sudo xerosploit")
elif xeros == "99":
info()
else :
menu()
def reconspider():
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.\" | boxes -d boy | lolcat")
userchoice = input("[1]Install [99]Back >> ")
if userchoice == "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")
info()
# elif userchoice == "2":
# os.system("cd reconspider && python3 reconspider.py")
elif userchoice == "99":
info()
else :
menu()
def setoolkit():
os.system("echo \"The Social-Engineer Toolkit is an open-source penetration\ntesting framework designed for social engineering\"| boxes -d boy | lolcat")
choiceset = input("[1]Install [2]Run [99]BAck >>")
if choiceset == "1":
os.system("git clone https://github.com/trustedsec/social-engineer-toolkit.git")
os.system("python social-engineer-toolkit/setup.py")
phishattack()
if choiceset == "2":
clearScr()
os.system("sudo setoolkit")
elif choiceset == "99":
phishattack()
else:
menu()
def passwd():
clearScr()
os.system("figlet -f standard -c Wordlist Generator | lolcat")
print("""
[01]Cupp
[02]WordlistCreator
[03]Goblin WordGenerator
[04]Credential reuse attacks
[05]Password list((1.4 Billion Clear Text Password))
[99]Back To Main Menu
""")
passchoice = input("Z4nzu ==>> ")
if passchoice == "1" or passchoice == "01":
clearScr()
cupp()
elif passchoice == "2" or passchoice == "02":
clearScr()
wlcreator()
elif passchoice == "3" or passchoice == "03":
clearScr()
goblinword()
elif passchoice == "4" or passchoice == "04":
clearScr()
credentialattack()
elif passchoice == "5" or passchoice == "05":
clearScr()
showme()
elif passchoice == "99":
clearScr()
menu()
elif passchoice == "":
menu()
else:
menu()
def cupp():
os.system("echo \"Common User Password Generator..!!\"| boxes -d boy | lolcat ")
cc=input("[1]Install [99]Back >> ")
if cc == "1":
os.system("git clone https://github.com/Mebus/cupp.git")
passwd()
elif cc == "2":
# os.system("cd cupp && ./cupp.py -h")
pass
elif cc == "99" :
passwd()
else :
main()
def wlcreator():
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")
userchoice = input("[1]Install [2]Run [99]Back >>")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/wlcreator")
passwd()
elif userchoice == "2":
os.system("cd wlcreator && sudo gcc -o wlcreator wlcreator.c && ./wlcreator 5")
elif userchoice == "99":
passwd()
else :
menu()
def goblinword():
os.system("echo \" GoblinWordGenerator \" | boxes -d boy | lolcat")
userchoice = input("[1]Install [2]Run [99]Back >>")
if userchoice == "1":
os.system("sudo git clone https://github.com/UndeadSec/GoblinWordGenerator.git")
passwd()
elif userchoice == "2":
os.system("cd GoblinWordGenerator && python3 goblin.py")
elif userchoice == "99":
passwd()
else :
menu()
def credentialattack():
os.system("echo \"[!]Check if the targeted email is in any leaks and then use the leaked password to check it against the websites.\n[!]Check if the target credentials you found is reused on other websites/services.\n[!]Checking if the old password you got from the target/leaks is still used in any website.\n[#]This Tool Available in MAC & Windows Os \n\t[!] https://github.com/D4Vinci/Cr3dOv3r\" | boxes -d boy | lolcat")
userchoice = input("[1]Install [2]Run [99]Back >> ")
if userchoice == "1":
os.system("sudo git clone https://github.com/D4Vinci/Cr3dOv3r.git")
os.system("cd Cr3dOv3r && python3 -m pip install -r requirements.txt")
passwd()
elif userchoice == "2" :
os.system("cd Cr3dOv3r && sudo python3 Cr3d0v3r.py -h")
elif userchoice == "99":
passwd()
else :
menu()
def wire():
clearScr()
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
[99]Back To The Main Menu """)
choice4 = input("Z4nzu ==>> ")
if choice4 == "1":
clearScr()
wifipumkin()
if choice4 == "2":
clearScr()
pixiewps()
if choice4 == "3":
clearScr()
bluepot()
if choice4 == "4":
clearScr()
fluxion()
if choice4 == "5":
clearScr()
wifiphisher()
elif choice4 == "6":
clearScr()
wifite()
elif choice4 == "7":
clearScr()
eviltwin()
elif choice4 == "99":
menu()
elif choice4 == "":
menu()
else:
menu()
def wifipumkin():
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")
wp=input("[1]Install [2]Run [99]Back >>")
if wp == "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")
wire()
elif wp == "2":
clearScr()
os.system("sudo wifipumpkin3")
elif wp == "99":
wire()
else :
menu()
def pixiewps():
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")
choicewps = input("[1]Install [2]Run [99]Back >> ")
if choicewps == "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")
if choicewps == "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 ")
pass
elif choicewps == "99":
wire()
else:
menu()
def bluepot():
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 >> ")
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")
time.sleep(3)
wire()
elif choice == "2":
os.system("cd bluepot-0.1 && sudo java -jar bluepot/BluePot-0.1.jar")
elif choice == "99":
wire()
else:
menu()
def fluxion():
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 >>")
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")
time.sleep(2)
wire()
elif choice == "2":
os.system("cd Fluxion && sudo bash fluxion.sh")
elif choice == "99" :
wire()
else:
menu()
def wifiphisher():
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..
""")
print("For More Details Visit >> https://github.com/wifiphisher/wifiphisher")
wchoice=input("[1]Install [2]Run [99]Back >> ")
if wchoice == "1":
os.system("git clone https://github.com/wifiphisher/wifiphisher.git")
os.system("cd wifiphisher && sudo python3 setup.py install")
wire()
if wchoice == "2":
os.system("cd wifiphisher && sudo wifiphisher")
elif wchoice == "99" :
wire()
else :
menu()
def wifite():
wc=input("[1]Install [2]Run [99]BAck >> ")
if wc == "1":
os.system("sudo git clone https://github.com/kimocoder/wifite2.git")
os.system("cd wifite2 && sudo python3 setup.py install && sudo pip3 install -r requirements.txt")
time.sleep(3)
wire()
elif wc =="2":
os.system("cd wifite2 && sudo wifite")
elif wc == "99":
wire()
else :
menu()
def eviltwin():
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")
userchoice = input("[1]Install [2]Run [99]Back >>")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/fakeap ")
wire()
elif userchoice == "2":
os.system("cd fakeap && sudo bash fakeap.sh")
elif userchoice == "99":
wire()
else :
menu()
def socialattack():
clearScr()
os.system("figlet -f standard SocialMedia Attack | lolcat")
print("""
[1] Instagram Attack
[2] Tweeter Attack
[3] Facebook Attack
[4] Application Checker
[99]Back To Menu
""")
choice=input("Z4nzu >> ")
if choice == "1":
clearScr()
instashell()
socialattack()
elif choice == "2":
clearScr()
tweetshell()
socialattack()
elif choice == "3":
clearScr()
faceshell()
socialattack()
elif choice == "4" :
clearScr()
appcheck()
socialattack()
elif choice == "99" :
menu()
else :
menu()
def instashell():
os.system("echo \"Instashell is an Shell Script to perform multi-threaded brute force attack against Instagram \"| boxes -d boy | lolcat")
instachoice=input("[1]install [2]Run [99]Back >> ")
if instachoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/instashell ")
os.system("cd instashell && sudo chmod +x install.sh && sudo ./install.sh")
socialattack()
elif instachoice == "2":
os.system("cd instashell && chmod +x instashell.sh && service tor start && sudo ./instashell.sh")
elif instachoice == "99":
socialattack()
else :
menu()
def tweetshell():
os.system("echo \"Tweetshell is an Shell Script to perform multi-threaded brute force attack against Twitter\"|boxes -d boy | lolcat")
choice = input ("[1]Install [2]Run [99]BAck >> ")
if choice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/tweetshell && chmod -R 775 tweetshell")
os.system("cd tweetshell && sudo ./install.sh")
socialattack()
elif choice == "2":
os.system("cd tweetshell && service tor start && sudo ./tweetshell.sh")
elif choice == "99":
socialattack()
else :
menu()
def faceshell():
os.system("echo \"Facebash is an Shell Script to perform brute force attack against FAcebook\n [!]Facebook blocks account for 1 hour after 20 wrong passwords, so this script can perform only 20 pass/h \"|boxes -d boy | lolcat")
choice = input ("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/facebash && chmod -R 775 facebash")
os.system("cd facebash && sudo ./install.sh")
socialattack()
elif choice == "2":
os.system("cd facebash && service tor start && sudo ./facebash.sh")
elif choice == "99":
socialattack()
else :
menu()
def appcheck():
os.system("echo \"Tool to check if an app is installed on the target device through a link.\"|boxes -d boy | lolcat")
userchoice = input("[1]Install [2]Run [99]Back >> ")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/underhanded")
socialattack()
elif userchoice == "2":
os.system("cd underhanded && sudo chmod +x underhanded.sh && sudo bash underhanded.sh")
elif userchoice == "99":
socialattack()
else :
menu()
def phishattack():
clearScr()
os.system("figlet -f standard -c Phishing Attack Tools | lolcat")
print("""
[1] Setoolkit
[2] SocialFish
[3] Shellphish
[4] BlackEye
[5] I-See_You(Get Location using phishing attack)
[6] SayCheese (Grab target's Webcam Shots)
[7] QR Code Jacking
[99]Back To Main Menu
""")
choice = input("Z4nzu ==>> ")
if choice == "1":
clearScr()
setoolkit()
if choice == "2":
clearScr()
socialfish()
if choice == "3":
clearScr()
shellphish()
if choice == "4":
clearScr()
blackeye()
elif choice == "5":
clearScr()
iseeyou()
elif choice == "6":
clearScr()
saycheese()
elif choice == "7":
clearScr()
qrjacking()
if choice == "99":
clearScr()
menu()
elif choice == "":
menu()
else:
menu()
def socialfish():
choice=input("[1]install [2]Run [99]BAck >> ")
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")
time.sleep(2)
phishattack()
elif choice =="2":
os.system("cd SocialFish && sudo python3 SocialFish.py root pass")
elif choice =="99":
phishattack()
else :
menu()
def shellphish():
choice=input("[1]install [2]Run [99]BAck >> ")
if choice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/shellphish")
phishattack()
elif choice =="2":
os.system("cd shellphish && sudo bash shellphish.sh")
elif choice =="99":
phishattack()
else :
menu()
def blackeye():
choice=input("[1]install [2]Run [99]BAck >> ")
if choice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/blackeye")
time.sleep(2)
phishattack()
elif choice =="2":
os.system("cd blackeye && sudo bash blackeye.sh")
elif choice =="99":
phishattack()
else :
menu()
def iseeyou():
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")
userchoice = input("[1]Install [2]Run [99]Back >> ")
if userchoice == "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")
phishattack()
elif userchoice == "2":
os.system("cd I-See-You && sudo bash ISeeYou.sh")
elif userchoice == "99":
phishattack()
else :
menu()
def saycheese():
os.system("echo \"Take webcam shots from target just sending a malicious link\"|boxes -d boy | lolcat")
userchoice = input("[1]Install [2]Run [99]Back >> ")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/saycheese")
phishattack()
elif userchoice == "2":
os.system("cd saycheese && sudo bash saycheese.sh")
elif userchoice == "99":
phishattack()
else :
menu()
def qrjacking():
os.system("echo \"QR Code Jacking (Any Website) \" | boxes -d boy | lolcat")
userchoice = input("[1]Install [2]Run [99]Back >>")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/ohmyqr && sudo apt-get install scrot")
phishattack()
elif userchoice == "2":
os.system("cd ohmyqr && sudo bash ohmyqr.sh")
elif userchoice == "99":
phishattack()
else :
menu()
def socialfinder():
clearScr()
os.system("figlet -f standard SocialMedia Finder | lolcat")
print("""
[1]Find SocialMedia By Facial Recognation System
[2]Find SocialMedia By UserName
[99]Back To Main Menu
""")
choice =input("Z4nzu =>>")
if choice == "1":
facialfind()
elif choice == "2":
userrecon()
elif choice == "99":
menu()
else :
menu()
def facialfind():
choice=input("[1]Install [2]Run [99]Back >>")
if choice == "1":
os.system("sudo add-apt-repository ppa:mozillateam/firefox-next && sudo apt update && sudo apt upgrade")
os.system("echo \"[!]Now You have To do some Manually\n[!]Install the Geckodriver for your operating system\n[!]Copy & Paste Link And Download File As System Configuration\n[#]https://github.com/mozilla/geckodriver/releases\n[!!]On Linux you can place it in /usr/bin \"| boxes -d boy")
time.sleep(5)
os.system("sudo git clone https://github.com/Greenwolf/social_mapper.git")
os.system("cd social_mapper/setup")
os.system("sudo python3 -m pip install --no-cache-dir -r requirements.txt")
socialfinder()
elif choice == "2":
os.system("cd social_mapper/setup")
os.system("sudo python social_mapper.py -h")
print("""\033[95m
You have to set Username and password of your AC Or Any Fack Account
{0}Type in Terminal nano social_mapper.py
\n ]""")
os.system("echo \"python social_mapper.py -f [<imageFoldername>] -i [<imgFolderPath>] -m fast [<AcName>] -fb -tw\"| boxes -d headline | lolcat")
elif choice == "99" :
socialfinder()
else :
menu()
def userrecon():
userchoice = input("[1]Install [2]Run [99]Back >> ")
if userchoice == "1":
os.system("sudo git clone https://github.com/thelinuxchoice/userrecon.git")
os.system("cd userrecon && sudo chmod +x userrecon.sh ")
time.sleep(3)
socialfinder()
elif userchoice == "2":
os.system("cd userrecon && sudo ./userrecon.sh")
elif userchoice == "99":
socialfinder()
else :
menu()
def forensic():
clearScr()
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
""")
choice = input("Z4nzu ==>>")
if choice == "3" :
clearScr()
bulkextractor()
elif choice == "4":
clearScr()
guymager()
elif choice == "1":
clearScr()
autopsy()
elif choice == "2":
clearScr()
wireshark()
elif choice == "5":
clearScr()
toolsley()
elif choice == "99":
menu()
elif choice == "":
menu()
else :
menu()
def bulkextractor():
print("""
[1]GUI Mode(Download required)
[2]CLI Mode
[99]BAck
""")
choice = input("Z4nzu >> ")
if choice == "1":
os.system("sudo git clone https://github.com/simsong/bulk_extractor.git")
os.system("ls src/ && cd .. && cd java_gui && ./BEViewer")
print("If you getting error after clone go to /java_gui/src/ And Compile .Jar file && run ./BEViewer")
print("Please Visit For More Details About Installation >> https://github.com/simsong/bulk_extractor ")
elif choice =="2":
os.system("sudo apt-get install bulk_extractor")
print("bulk_extractor and options")
os.system("bulk_extractor")
os.system("echo \"bulk_extractor [options] imagefile\" | boxes -d headline | lolcat")
elif choice == "99":
forensic()
elif choice =="":
forensic()
else :
menu()
def guymager():
choice = input("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("sudo apt install guymager")
forensic()
elif choice == "2":
clearScr()
os.system("sudo guymager")
elif choice == "99":
forensic()
elif choice == "":
forensic()
else :
menu()
def autopsy():
os.system("echo \"Autopsy is a platform that is used by Cyber Investigators.\n[!] Works in any Os\n[!]Recover Deleted Files from any OS & MEdia \n[!]Extract Image Metadata \"|boxes -d boy | lolcat")
print("""
[1]Run [99]Back
""")
choice=input("Z4nzu >> ")
if choice == "1":
os.system("sudo autopsy")
if choice == "":
forensic()
elif choice =="99":
forensic()
else :
menu()
def wireshark():
os.system("echo \" Wireshark is a network capture and analyzer \ntool to see what’s happening in your network.\n And also investigate Network related incident \" | boxes -d boy | lolcat")
choice = input("[1]Run [99]Back >> ")
if choice == "1":
os.system("sudo wireshark")
elif choice == "99":
forensic()
elif choice == "":
forensic()
else :
menu()
def toolsley():
os.system("echo \" Toolsley got more than ten useful tools for investigation.\n\b File signature verifier\n\b File identifier \n\b Hash & Validate \n\b Binary inspector \n\bEncode text \n\b Data URI generator \n\b Password generator \" | boxes -d boy | lolcat")
userchoice = input("[1]Open [99]Back >> ")
if userchoice == "1":
print("Trying to open WebBrowser ")
time.sleep(3)
webbrowser.open_new_tab('https://www.toolsley.com/')
elif userchoice == "99":
forensic()