-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Netrunner.py
2567 lines (2411 loc) · 105 KB
/
Netrunner.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 webbrowser
import time
import socket
import requests
from getpass import getpass
from os import path
from platform import system
Logo="""\033[33m
░█████╗░██╗░░░██╗██████╗░███████╗██████╗░██████╗░██╗░░░██╗███╗░░██╗██╗░░██╗ ██████╗░░█████╗░███████╗███████╗
██╔══██╗╚██╗░██╔╝██╔══██╗██╔════╝██╔══██╗██╔══██╗██║░░░██║████╗░██║██║░██╔╝ ╚════██╗██╔══██╗╚════██║╚════██║
██║░░╚═╝░╚████╔╝░██████╦╝█████╗░░██████╔╝██████╔╝██║░░░██║██╔██╗██║█████═╝░ ░░███╔═╝██║░░██║░░░░██╔╝░░░░██╔╝
██║░░██╗░░╚██╔╝░░██╔══██╗██╔══╝░░██╔══██╗██╔═══╝░██║░░░██║██║╚████║██╔═██╗░ ██╔══╝░░██║░░██║░░░██╔╝░░░░██╔╝░
╚█████╔╝░░░██║░░░██████╦╝███████╗██║░░██║██║░░░░░╚██████╔╝██║░╚███║██║░╚██╗ ███████╗╚█████╔╝░░██╔╝░░░░██╔╝░░
░╚════╝░░░░╚═╝░░░╚═════╝░╚══════╝╚═╝░░╚═╝╚═╝░░░░░░╚═════╝░╚═╝░░╚══╝╚═╝░░╚═╝ ╚══════╝░╚════╝░░░╚═╝░░░░░╚═╝░░░
███╗░░██╗███████╗████████╗██████╗░██╗░░░██╗███╗░░██╗███╗░░██╗███████╗██████╗░
████╗░██║██╔════╝╚══██╔══╝██╔══██╗██║░░░██║████╗░██║████╗░██║██╔════╝██╔══██╗
██╔██╗██║█████╗░░░░░██║░░░██████╔╝██║░░░██║██╔██╗██║██╔██╗██║█████╗░░██████╔╝
██║╚████║██╔══╝░░░░░██║░░░██╔══██╗██║░░░██║██║╚████║██║╚████║██╔══╝░░██╔══██╗
██║░╚███║███████╗░░░██║░░░██║░░██║╚██████╔╝██║░╚███║██║░╚███║███████╗██║░░██║
╚═╝░░╚══╝╚══════╝░░░╚═╝░░░╚═╝░░╚═╝░╚═════╝░╚═╝░░╚══╝╚═╝░░╚══╝╚══════╝╚═╝░░╚═╝
\033[97m[!] https://github.com/MiChaelinzo/CyberPunkNetrunner \n
\033[91m[X] Please Don't Use For illegal Activity [X]
\033[97m """
def menu():
print(Logo + """\033[0m
\033[97m
[00]𝘈𝘯𝘰𝘯𝘚𝘶𝘳𝘧
[01]𝘐𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯 𝘎𝘢𝘵𝘩𝘦𝘳𝘪𝘯𝘨
[02]𝘞𝘰𝘳𝘥𝘭𝘪𝘴𝘵 𝘎𝘦𝘯𝘦𝘳𝘢𝘵𝘰𝘳
[03]𝘞𝘪𝘳𝘦𝘭𝘦𝘴𝘴 𝘈𝘵𝘵𝘢𝘤𝘬
[04]𝘚𝘘𝘓 𝘐𝘯𝘫𝘦𝘤𝘵𝘪𝘰𝘯 𝘛𝘰𝘰𝘭𝘴
[05]𝘗𝘩𝘪𝘴𝘩𝘪𝘯𝘨 𝘈𝘵𝘵𝘢𝘤𝘬
[06]𝘞𝘦𝘣 𝘈𝘵𝘵𝘢𝘤𝘬 𝘛𝘰𝘰𝘭
[07]𝘗𝘰𝘴𝘵 𝘦𝘹𝘱𝘭𝘰𝘪𝘵𝘢𝘵𝘪𝘰𝘯
[08]𝘍𝘰𝘳𝘦𝘯𝘴𝘪𝘤 𝘛𝘰𝘰𝘭𝘴
[09]𝘗𝘢𝘺𝘭𝘰𝘢𝘥 𝘊𝘳𝘦𝘢𝘵𝘰𝘳
[10]𝘌𝘹𝘱𝘭𝘰𝘪𝘵 𝘍𝘳𝘢𝘮𝘦𝘸𝘰𝘳𝘬𝘴
[11]𝘞𝘪𝘧𝘪 𝘑𝘢𝘮𝘮𝘪𝘯𝘨
[12]𝘋𝘥𝘰𝘴 𝘈𝘵𝘵𝘢𝘤𝘬 𝘛𝘰𝘰𝘭𝘴
[13]𝘚𝘰𝘤𝘪𝘢𝘭𝘔𝘦𝘥𝘪𝘢 𝘍𝘪𝘯𝘥𝘦𝘳
[14]𝘟𝘚𝘚 𝘈𝘵𝘵𝘢𝘤𝘬 𝘛𝘰𝘰𝘭𝘴
[15]𝘚𝘵𝘦𝘨𝘢𝘯𝘰𝘨𝘳𝘢𝘱𝘩𝘺
[16]𝘔𝘰𝘳𝘦 𝘛𝘰𝘰𝘭𝘴
[17]𝘜𝘱𝘥𝘢𝘵𝘦 𝘰𝘳 𝘜𝘯𝘪𝘯𝘴𝘵𝘢𝘭𝘭 | 𝘕𝘦𝘵𝘳𝘶𝘯𝘯𝘦𝘳
[99]𝘌𝘹𝘪𝘵
""")
choice = input("几乇ㄒ尺ㄩ几几乇尺 =>> ")
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)
update()
elif choice == "99" :
print("Happy Hacking...")
time.sleep(1)
clearScr()
sys.exit()
elif choice == "":
menu()
else:
print("\n ERROR: Wrong Input")
time.sleep(2)
menu()
def anonsurf():
os.system("figlet -f standard -c Anonmously Hiding Tool | lolcat")
print("""
[1] 𝘈𝘯𝘰𝘯𝘮𝘰𝘶𝘴𝘭𝘺 𝘚𝘶𝘳𝘧
[2] 𝘔𝘶𝘭𝘵𝘪𝘵𝘰𝘳
[99] 𝘉𝘢𝘤𝘬
""")
choice = input("几乇ㄒ尺ㄩ几几乇尺 =>>")
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 multiple 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] 𝘕𝘮𝘢𝘱
[2] 𝘋𝘳𝘢𝘤𝘯𝘮𝘢𝘱
[3] 𝘗𝘰𝘳𝘵 𝘚𝘤𝘢𝘯𝘯𝘪𝘯𝘨
[4] 𝘏𝘰𝘴𝘵 𝘛𝘰 𝘐𝘗
[5] 𝘟𝘦𝘳𝘰𝘴𝘱𝘭𝘰𝘪𝘵
[6] 𝘙𝘌𝘋 𝘏𝘈𝘞𝘒 (𝘈𝘭𝘭 𝘐𝘯 𝘖𝘯𝘦 𝘚𝘤𝘢𝘯𝘯𝘪𝘯𝘨)
[7] 𝘙𝘦𝘤𝘰𝘯𝘚𝘱𝘪𝘥𝘦𝘳(𝘍𝘰𝘳 𝘈𝘭𝘭 𝘚𝘤𝘢𝘯𝘪𝘯𝘨)
[8] 𝘐𝘴𝘐𝘵𝘋𝘰𝘸𝘯 (𝘊𝘩𝘦𝘤𝘬 𝘞𝘦𝘣𝘴𝘪𝘵𝘦 𝘋𝘰𝘸𝘯/𝘜𝘱)
[9] 𝘐𝘯𝘧𝘰𝘨𝘢 - 𝘌𝘮𝘢𝘪𝘭 𝘖𝘚𝘐𝘕𝘛
[10] 𝘙𝘦𝘤𝘰𝘯𝘋𝘰𝘨
[11] 𝘚𝘵𝘳𝘪𝘬𝘦𝘳
[12] 𝘚𝘦𝘤𝘳𝘦𝘵𝘍𝘪𝘯𝘥𝘦𝘳 (𝘭𝘪𝘬𝘦 𝘈𝘗𝘐 & 𝘦𝘵𝘤)
[13] 𝘍𝘪𝘯𝘥 𝘐𝘯𝘧𝘰 𝘜𝘴𝘪𝘯𝘨 𝘚𝘩𝘰𝘥𝘢𝘯
[14] 𝘗𝘰𝘳𝘵 𝘚𝘤𝘢𝘯𝘯𝘦𝘳
[15] 𝘉𝘳𝘦𝘢𝘤𝘩𝘦𝘳
[99] 𝘉𝘢𝘤𝘬 𝘛𝘰 𝘔𝘢𝘪𝘯 𝘔𝘦𝘯𝘶
""")
choice2 = input("几乇ㄒ尺ㄩ几几乇尺 =>> ")
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":
clearScr()
isitdown()
elif choice2 == "9":
clearScr()
infogaemail()
elif choice2 == "99":
clearScr()
menu()
elif choice2 == "10":
clearScr()
recondog()
elif choice2 == "11":
clearScr()
striker()
elif choice2 == "12":
clearScr()
secretfinder()
elif choice2 == "13":
clearScr()
shodantool()
elif choice2 == "14":
clearScr()
portscanner()
elif choice2 == "15":
clearScr()
breacher()
elif choice2 == "":
menu()
else:
menu()
def breacher():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/s0md3v/Breacher.git")
info()
elif choice == "99":
info()
else :
menu()
def portscanner():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/floriankunushevci/rang3r; sudo pip install termcolor")
elif choice == "2":
ipinput=input("Enter Ip >> ")
os.system("cd rang3r;sudo python rang3r.py --ip {0}".format(ipinput))
elif choice == "99":
info()
else :
menu()
def shodantool():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/m4ll0k/Shodanfy.py.git")
info()
elif choice == "99":
info()
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 secretfinder():
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 >> ")
if choice == "1":
os.system("git clone https://github.com/m4ll0k/SecretFinder.git secretfinder")
os.system("cd secretfinder; sudo pip3 install -r requirements.txt")
info()
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.\n :~python3 reconspider.py \n\t [!]https://github.com/bhavsec/reconspider \" | 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]𝘊𝘶𝘱𝘱
[02]𝘞𝘰𝘳𝘥𝘭𝘪𝘴𝘵𝘊𝘳𝘦𝘢𝘵𝘰𝘳
[03]𝘎𝘰𝘣𝘭𝘪𝘯 𝘞𝘰𝘳𝘥𝘎𝘦𝘯𝘦𝘳𝘢𝘵𝘰𝘳
[04]𝘊𝘳𝘦𝘥𝘦𝘯𝘵𝘪𝘢𝘭 𝘳𝘦𝘶𝘴𝘦 𝘢𝘵𝘵𝘢𝘤𝘬𝘴
[05]𝘗𝘢𝘴𝘴𝘸𝘰𝘳𝘥 𝘭𝘪𝘴𝘵((1.4 𝘉𝘪𝘭𝘭𝘪𝘰𝘯 𝘊𝘭𝘦𝘢𝘳 𝘛𝘦𝘹𝘵 𝘗𝘢𝘴𝘴𝘸𝘰𝘳𝘥))
[99]𝘉𝘢𝘤𝘬 𝘛𝘰 𝘔𝘢𝘪𝘯 𝘔𝘦𝘯𝘶
""")
passchoice = input("几乇ㄒ尺ㄩ几几乇尺 ==>> ")
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 :
menu()
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/jheinz1999/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] 𝘞𝘪𝘍𝘪-𝘗𝘶𝘮𝘱𝘬𝘪𝘯
[2] 𝘱𝘪𝘹𝘪𝘦𝘸𝘱𝘴
[3] 𝘉𝘭𝘶𝘦𝘵𝘰𝘰𝘵𝘩 𝘏𝘰𝘯𝘦𝘺𝘱𝘰𝘵 𝘎𝘜𝘐 𝘍𝘳𝘢𝘮𝘦𝘸𝘰𝘳𝘬
[4] 𝘍𝘭𝘶𝘹𝘪𝘰𝘯
[5] 𝘞𝘪𝘧𝘪𝘱𝘩𝘪𝘴𝘩𝘦𝘳
[6] 𝘞𝘪𝘧𝘪𝘵𝘦
[7] 𝘌𝘷𝘪𝘭𝘛𝘸𝘪𝘯
[8] 𝘏𝘰𝘸𝘮𝘢𝘯𝘺𝘱𝘦𝘰𝘱𝘭𝘦
[99]𝘉𝘢𝘤𝘬 𝘛𝘰 𝘛𝘩𝘦 𝘔𝘢𝘪𝘯 𝘔𝘦𝘯𝘶 """)
choice4 = input("几乇ㄒ尺ㄩ几几乇尺 ==>> ")
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== "8":
clearScr()
howmanypeople()
elif choice4 == "99":
menu()
elif choice4 == "":
menu()
else:
menu()
def howmanypeople():
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 >> ")
if choice == "1":
os.system("sudo apt-get install tshark;sudo pip install howmanypeoplearearound")
wire()
elif choice == "2":
os.system("sudo howmanypeoplearearound")
elif choice == "99":
wire()
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("""
𝘞𝘪𝘧𝘪𝘱𝘩𝘪𝘴𝘩𝘦𝘳 𝘪𝘴 𝘢 𝘳𝘰𝘨𝘶𝘦 𝘈𝘤𝘤𝘦𝘴𝘴 𝘗𝘰𝘪𝘯𝘵 𝘧𝘳𝘢𝘮𝘦𝘸𝘰𝘳𝘬 𝘧𝘰𝘳 𝘤𝘰𝘯𝘥𝘶𝘤𝘵𝘪𝘯𝘨 𝘳𝘦𝘥 𝘵𝘦𝘢𝘮 𝘦𝘯𝘨𝘢𝘨𝘦𝘮𝘦𝘯𝘵𝘴 𝘰𝘳 𝘞𝘪-𝘍𝘪 𝘴𝘦𝘤𝘶𝘳𝘪𝘵𝘺 𝘵𝘦𝘴𝘵𝘪𝘯𝘨.
𝘜𝘴𝘪𝘯𝘨 𝘞𝘪𝘧𝘪𝘱𝘩𝘪𝘴𝘩𝘦𝘳, 𝘱𝘦𝘯𝘦𝘵𝘳𝘢𝘵𝘪𝘰𝘯 𝘵𝘦𝘴𝘵𝘦𝘳𝘴 𝘤𝘢𝘯 𝘦𝘢𝘴𝘪𝘭𝘺 𝘢𝘤𝘩𝘪𝘦𝘷𝘦 𝘢 𝘮𝘢𝘯-𝘪𝘯-𝘵𝘩𝘦-𝘮𝘪𝘥𝘥𝘭𝘦 𝘱𝘰𝘴𝘪𝘵𝘪𝘰𝘯 𝘢𝘨𝘢𝘪𝘯𝘴𝘵 𝘸𝘪𝘳𝘦𝘭𝘦𝘴𝘴 𝘤𝘭𝘪𝘦𝘯𝘵𝘴 𝘣𝘺 𝘱𝘦𝘳𝘧𝘰𝘳𝘮𝘪𝘯𝘨
𝘵𝘢𝘳𝘨𝘦𝘵𝘦𝘥 𝘞𝘪-𝘍𝘪 𝘢𝘴𝘴𝘰𝘤𝘪𝘢𝘵𝘪𝘰𝘯 𝘢𝘵𝘵𝘢𝘤𝘬𝘴. 𝘞𝘪𝘧𝘪𝘱𝘩𝘪𝘴𝘩𝘦𝘳 𝘤𝘢𝘯 𝘣𝘦 𝘧𝘶𝘳𝘵𝘩𝘦𝘳 𝘶𝘴𝘦𝘥 𝘵𝘰 𝘮𝘰𝘶𝘯𝘵 𝘷𝘪𝘤𝘵𝘪𝘮-𝘤𝘶𝘴𝘵𝘰𝘮𝘪𝘻𝘦𝘥 𝘸𝘦𝘣 𝘱𝘩𝘪𝘴𝘩𝘪𝘯𝘨 𝘢𝘵𝘵𝘢𝘤𝘬𝘴 𝘢𝘨𝘢𝘪𝘯𝘴𝘵 𝘵𝘩𝘦
𝘤𝘰𝘯𝘯𝘦𝘤𝘵𝘦𝘥 𝘤𝘭𝘪𝘦𝘯𝘵𝘴 𝘪𝘯 𝘰𝘳𝘥𝘦𝘳 𝘵𝘰 𝘤𝘢𝘱𝘵𝘶𝘳𝘦 𝘤𝘳𝘦𝘥𝘦𝘯𝘵𝘪𝘢𝘭𝘴 (𝘦.𝘨. 𝘧𝘳𝘰𝘮 𝘵𝘩𝘪𝘳𝘥 𝘱𝘢𝘳𝘵𝘺 𝘭𝘰𝘨𝘪𝘯 𝘱𝘢𝘨𝘦𝘴 𝘰𝘳 𝘞𝘗𝘈/𝘞𝘗𝘈2 𝘗𝘳𝘦-𝘚𝘩𝘢𝘳𝘦𝘥 𝘒𝘦𝘺𝘴) 𝘰𝘳 𝘪𝘯𝘧𝘦𝘤𝘵 𝘵𝘩𝘦
𝘷𝘪𝘤𝘵𝘪𝘮 𝘴𝘵𝘢𝘵𝘪𝘰𝘯𝘴 𝘸𝘪𝘵𝘩 𝘮𝘢𝘭𝘸𝘢𝘳𝘦..
""")
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():
os.system("echo \"[!]https://github.com/derv82/wifite2 \"|boxes -d boy | lolcat")
wc=input("[1]Install [2]Run [99]Back >> ")
if wc == "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")
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/Z4nzu/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] 𝘐𝘯𝘴𝘵𝘢𝘨𝘳𝘢𝘮 𝘈𝘵𝘵𝘢𝘤𝘬
[2] 𝘈𝘭𝘭𝘪𝘯𝘖𝘯𝘦 𝘚𝘰𝘤𝘪𝘢𝘭𝘔𝘦𝘥𝘪𝘢 𝘈𝘵𝘵𝘢𝘤𝘬
[3] 𝘍𝘢𝘤𝘦𝘣𝘰𝘰𝘬 𝘈𝘵𝘵𝘢𝘤𝘬
[4] 𝘈𝘱𝘱𝘭𝘪𝘤𝘢𝘵𝘪𝘰𝘯 𝘊𝘩𝘦𝘤𝘬𝘦𝘳
[99]𝘉𝘢𝘤𝘬 𝘛𝘰 𝘔𝘦𝘯𝘶
""")
choice=input("几乇ㄒ尺ㄩ几几乇尺 >> ")
if choice == "1":
clearScr()
instabrute()
elif choice == "2":
clearScr()
bruteforce()
elif choice == "3":
clearScr()
faceshell()
elif choice == "4" :
clearScr()
appcheck()
elif choice == "99" :
others()
else :
menu()
def instabrute():
os.system("echo \"Brute force attack against Instagram \n\t [!]https://github.com/chinoogawa/instaBrute \"| boxes -d boy | lolcat")
instachoice=input("[1]install [2]Run [99]Back >> ")
if instachoice == "1":
os.system("sudo git clone https://github.com/chinoogawa/instaBrute.git ")
os.system("cd instaBrute;sudo pip install -r requirements.txt")
socialattack()
elif instachoice == "2":
uname = input("Enter Username >> ")
passinput=input("Enter wordword list >> ")
os.system("cd instaBrute;sudo python instaBrute.py -u {0} -d {1}".format(uname,passinput))
elif instachoice == "99":
socialattack()
else :
menu()
def bruteforce():
os.system("echo \"Brute_Force_Attack Gmail Hotmail Twitter Facebook Netflix \n[!]python3 Brute_Force.py -g <[email protected]> -l <File_list> \n\t[!]https://github.com/Matrix07ksa/Brute_Force \"|boxes -d boy | lolcat")
choice = input ("[1]Install [2]Run [99]BAck >> ")
if choice == "1":
os.system("sudo git clone https://github.com/Matrix07ksa/Brute_Force.git")
os.system("cd Brute_Force ;sudo pip3 install proxylist;pip3 install mechanize")
socialattack()
elif choice == "2":
os.system("cd Brute_Force;python3 Brute_Force.py -h")
elif choice == "99":
socialattack()
else :
menu()
def faceshell():
os.system("echo \" Facebook BruteForcer[!]https://github.com/Matrix07ksa/Brute_Force \"|boxes -d boy | lolcat")
choice = input ("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("sudo git clone https://github.com/Matrix07ksa/Brute_Force.git")
os.system("cd Brute_Force ;sudo pip3 install proxylist;pip3 install mechanize")
socialattack()
elif choice == "2":
uname=input("Enter Username >> ")
passinput=input("Enter Wordlist >> ")
os.system("cd Brute_Force;python3 Brute_Force.py -f {0} -l {1}".format(uname,passinput))
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/jakuta-tech/underhanded")
os.system("cd underhanded && sudo chmod +x underhanded.sh")
socialattack()
elif userchoice == "2":
os.system("cd underhanded ; 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] 𝘚𝘦𝘵𝘰𝘰𝘭𝘬𝘪𝘵
[2] 𝘚𝘰𝘤𝘪𝘢𝘭𝘍𝘪𝘴𝘩
[3] 𝘏𝘪𝘥𝘥𝘦𝘯𝘌𝘺𝘦
[4] 𝘌𝘷𝘪𝘭𝘨𝘪𝘯𝘹2
[5] 𝘐-𝘚𝘦𝘦_𝘠𝘰𝘶(𝘎𝘦𝘵 𝘓𝘰𝘤𝘢𝘵𝘪𝘰𝘯 𝘶𝘴𝘪𝘯𝘨 𝘱𝘩𝘪𝘴𝘩𝘪𝘯𝘨 𝘢𝘵𝘵𝘢𝘤𝘬)
[6] 𝘚𝘢𝘺𝘊𝘩𝘦𝘦𝘴𝘦 (𝘎𝘳𝘢𝘣 𝘵𝘢𝘳𝘨𝘦𝘵'𝘴 𝘞𝘦𝘣𝘤𝘢𝘮 𝘚𝘩𝘰𝘵𝘴)
[7] 𝘘𝘙 𝘊𝘰𝘥𝘦 𝘑𝘢𝘤𝘬𝘪𝘯𝘨
[8] 𝘚𝘩𝘦𝘭𝘭𝘗𝘩𝘪𝘴𝘩
[99]𝘉𝘢𝘤𝘬 𝘛𝘰 𝘔𝘢𝘪𝘯 𝘔𝘦𝘯𝘶
""")
choice = input("几乇ㄒ尺ㄩ几几乇尺 ==>> ")
if choice == "1":
clearScr()
setoolkit()
if choice == "2":
clearScr()
socialfish()
if choice == "3":
clearScr()
hiddeneye()
if choice == "4":
clearScr()
evilginx()
elif choice == "5":
clearScr()
iseeyou()
elif choice == "6":
clearScr()
saycheese()
elif choice == "7":
clearScr()
qrjacking()
elif choice == "8":
clearScr()
shellphish()
elif choice == "99":
clearScr()
menu()
elif choice == "":
menu()
else:
menu()
def socialfish():
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 >> ")
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 hiddeneye():
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 >> ")
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")
phishattack()
elif choice =="2":
os.system("cd HiddenEye;sudo python3 HiddenEye.py")
elif choice =="99":
phishattack()
else :
menu()
def evilginx():
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 >> ")
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")
time.sleep(2)
phishattack()
elif choice =="2":
os.system("sudo evilginx")
elif choice =="99":
phishattack()
else :
menu()
def shellphish():
os.system("echo \"Phishing Tool for 18 social media \n [!]https://github.com/An0nUD4Y/shellphish \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("git clone https://github.com/An0nUD4Y/shellphish")
elif choice == "2":
os.system("cd shellphish;sudo bash shellphish.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/hangetzzu/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/cryptedwolf/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]𝘍𝘪𝘯𝘥 𝘚𝘰𝘤𝘪𝘢𝘭𝘔𝘦𝘥𝘪𝘢 𝘉𝘺 𝘍𝘢𝘤𝘪𝘢𝘭 𝘙𝘦𝘤𝘰𝘨𝘯𝘢𝘵𝘪𝘰𝘯 𝘚𝘺𝘴𝘵𝘦𝘮
[2]𝘍𝘪𝘯𝘥 𝘚𝘰𝘤𝘪𝘢𝘭𝘔𝘦𝘥𝘪𝘢 𝘉𝘺 𝘜𝘴𝘦𝘳𝘕𝘢𝘮𝘦
[3]𝘚𝘩𝘦𝘳𝘭𝘰𝘤𝘬
[4]𝘚𝘰𝘤𝘪𝘢𝘭𝘚𝘤𝘢𝘯 | 𝘜𝘴𝘦𝘳𝘯𝘢𝘮𝘦 𝘰𝘳 𝘌𝘮𝘢𝘪𝘭
[99]𝘉𝘢𝘤𝘬 𝘛𝘰 𝘔𝘢𝘪𝘯 𝘔𝘦𝘯𝘶
""")
choice =input("几乇ㄒ尺ㄩ几几乇尺 =>>")
if choice == "1":
clearScr()
facialfind()
elif choice == "2":
clearScr()
finduser()
elif choice == "3":
clearScr()
sherlock()
elif choice == "4":
clearScr()
socialscan()
elif choice == "99":
menu()
else :
menu()
def socialscan():
os.system("echo \"Check email address and username availability on online platforms with 100% accuracy \n\t[*]https://github.com/iojw/socialscan \"|boxes -d boy | lolcat")
choice = input("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("sudo pip install socialscan")
elif choice == "2":
uname =input("Enter Username or Emailid (if both then please space between email & username) >>")
os.system("sudo socialscan {0}".format(uname))
elif choice == "99":
socialfinder()
else :
menu()
def sherlock():
os.system("echo \"Hunt down social media accounts by username across social networks \n For More Usege \n\t >>python3 sherlock --help \n [!]https://github.com/sherlock-project/sherlock \"|boxes -d boy | lolcat")
choice = input("[1]Install [99]Back >> ")
if choice == "1":
os.system("git clone https://github.com/sherlock-project/sherlock.git")
os.system("cd sherlock ;sudo python3 -m pip install -r requirements.txt")
elif choice == "2":
uname= input("Enter Username >> ")
os.system("cd sherlock ;sudo python3 sherlock {0}".format(uname))
elif choice == "99":
socialfinder()
else :
menu()
def facialfind():
os.system("echo \"A Social Media Mapping Tool that correlates profiles\n via facial recognition across different sites. \n\t[!]https://github.com/Greenwolf/social_mapper \"|boxes -d boy | lolcat")
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("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")
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 | lolcat")
elif choice == "2":
os.system("cd social_mapper/setup")