-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sword Lite.py
783 lines (779 loc) · 38.6 KB
/
Sword Lite.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
#import
import random
import time
import re
import webbrowser
#Dictionary Module
#English
def despassword_en():
#Dictionary array
dictionary1 = ("1234")
dictionary2 = ("12345")
dictionary3 = ("qwertyuiop")
dictionary4 = ("password")
dictionary5 = ("123456")
dictionary6 = ("1234567")
dictionary7 = ("12345678")
dictionary8 = ("123456789")
dictionary9 = ("1234567890")
dictionary10 = ("continue")
dictionary11 = ("i love you")
dictionary12 = ("superman")
dictionary13 = ("fornite")
dictionary14 = ("pokemon")
dictionary15 = ("laptop")
dictionary16 = ("keyboard")
dictionary17 = ("acount")
dictionary18 = ("batman")
dictionary19 = ("mypassword")
dictionary20 = ("apple")
dictionary21 = ("dog")
dictionary22 = (" ")
dictionary23 = ("pen")
password = input("Enter the password to find it in the dictionary: ")
if password == (dictionary1):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary2):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary3):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary4):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary5):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary6):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary7):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary8):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary9):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary10):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary11):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary12):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary13):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary14):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary15):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary16):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary17):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary18):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary19):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary20):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary21):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary22):
print ("Your password is in the password dictionary make more secure it.")
if password == (dictionary23):
print ("Your password is in the password dictionary make more secure it.")
else:
print ("Your password is not in the dictionary, now i check the characters")
#Spanish
def despassword_es():
#Dictionary array
dictionary1 = ("1234")
dictionary2 = ("12345")
dictionary3 = ("qwertyuiop")
dictionary4 = ("contraseña")
dictionary5 = ("123456")
dictionary6 = ("1234567")
dictionary7 = ("12345678")
dictionary8 = ("123456789")
dictionary9 = ("1234567890")
dictionary10 = ("continuar")
dictionary11 = ("te quiero")
dictionary12 = ("superman")
dictionary13 = ("fornite")
dictionary14 = ("pokemon")
dictionary15 = ("ordenador")
dictionary16 = ("teclado")
dictionary17 = ("cuenta")
dictionary18 = ("batman")
dictionary19 = ("micontraseña")
dictionary20 = ("apple")
dictionary21 = ("perro")
dictionary22 = (" ")
dictionary23 = ("lapiz")
password = input("Introduce la contraseña para buscarla en el diccionario de contraseñas: ")
if password == (dictionary1):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary2):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary3):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary4):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary5):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary6):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary7):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary8):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary9):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary10):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary11):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary12):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary13):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary14):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary15):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary16):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary17):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary18):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary19):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary20):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary21):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary22):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
if password == (dictionary23):
print ("Haz mas segura tu contraseña, ¡Aparece en el diccionario de contraseñas!")
else:
print ("tu contraseña no aparece en el diccionario de contraseñas, vamos a revisar sus caracteres.")
#Characters Module
#English
def characters_en():
password = input("Enter the password to chek her characters: ")
if len(password) < 8:
print("Make sure your password is at lest 8 letters")
elif re.search('[0-9]',password) is None:
print("Make sure your password has a capital letter in it")
elif re.search('[A-Z]',password) is None:
print("Make sure your password has a capital letter in it")
else:
print ("Your password has passed character checks")
#Spanish
def characters_es():
password = input("Introduce la contraseña para revisar sus caracteres: ")
if len(password) < 8:
print("Haz mas segura tu contraseña añadiendo mas caracteres o numero, tiene que ser superior a 8 caracteres")
elif re.search('[0-9]',password) is None:
print("Para que tu contraseña sea mas segura añade numeros")
elif re.search('[A-Z]',password) is None:
print("Para que tu contraseña sea mas segura añade letras matusculas")
else:
print ("Tu contraseña ha pasado los controles de caracteres")
#Program---
print (" ------- ---------- -------- --------")
print (" | \ / | | | | | |")
print (" | \ / | | | | | |")
print (" | \ / | | | | | |")
print (" ------- \ /\ / | | -------- | |")
print (" | \ / \ / | | |\ | |")
print (" | \ / \ / | | | \ | |")
print (" | \ / \ / | | | \ | /")
print (" ------- \/ \/ ---------- | \ ---------")
print (" Powered By: Phyton 3")
print (" © Isaac Hernán ©")
#characters
characters10 = ("QWERTYUIOPASDFGHJKLZXCVBNM#@¡!+-_.,=&%$/*:;ªº")
characters9 = ("#@¡!+-_.,=&%$/*:;ªºasdfghjklqwertyuiopzxcvbnm")
characters8 = ("#@¡!+-_.,=&%$/*:;ªº1234567890")
characters7 = ("QWERTYUIOPASDFGHJKLZXCVBNM1234567890")
characters6 = ("asdfghjklqwertyuiopzxcvbnm1234567890")
characters5 = ("asdfghjklñqwertyuiopzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM")
characters4 = ("asdfghjklqwertyuiopzxcvbnm")
characters3 = ("QWERTYUIOPASDFGHJKLZXCVBNM")
characters2 = ("1234567890")
characters1 = ("#@¡!+-_.,=&%$/*:;ªº")
unificado = ("asdfghjklñqwertyuiopzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890#@¡!+-_.,=&%$/*:;ªº")
#Language
while True:
time.sleep (2)
print ("A. English")
print ("B. Español")
language = input ("Choose a language / Elije un Idioma ")
if language == ("a"):
print ("You have chosen English")
print (" ")
nombre = input ("Your name please ")
if nombre == ("Sword"):
print ("Hey, that's my name too!!!")
if nombre == ("Isaaker"):
print ("Hello Father")
else:
print ("Welcome:")
print (nombre)
while True:
#Start Menu opciones
print (" ")
print ("A.What are you?")
print ("B.Version")
print ("C.Credits")
print ("D.Create password")
print ("E.Report an error o make a issue")
print ("F.Check my password")
print ("G.Exit")
print ("?.Help")
userName = input ("Choose an option ")
print (" ")
#¿Que eres?
if userName == ("?"):
print ("Welcome to the Help Portal")
time.sleep (1)
print ("Here you can find important information about this program.")
time.sleep (1)
print ("------------------------------")
print ("A.Instructions for Use")
print ("B.Consult Source Code")
print ("C.Consult the license")
print ("D.Create Passwords")
print ("E.Visit Sword's official website")
print ("F.Exit")
time.sleep (2)
help1 = input ("How can I help you? ")
if help1 == ("a"):
print (" ")
print ("Instructions for use Sword:")
print ("To start Sword will ask you for your language, then your name for purely personalization reasons, once you get it it will show you a menu with letters in front of it, you ONLY MUST TYPE THE LETTER even if it is in upper case type the letter in lower case. After getting your selection it will take you to your choice, being the case of Create Password to another menu (Read Help Article on: Create Passwords).")
if help1 == ("b"):
webbrowser.open(
'https://github.com/Isaaker/Sword'
)
if help1 == ("c"):
print ("A browser window will open shortly.")
webbrowser.open(
'https://github.com/Isaaker/Sword/blob/main/LICENSE.txt'
)
if help1 == ("d"):
print ("To create a password you must go to the respective menu (read Instructions for Use) then it will ask you if you want a PIN which is the same as what you use to unlock the phone or a Normal Password which is what you use for example to unlock a computer and then it will ask you a few more questions and... Done")
if help1 == ("e"):
print ("A browser window will open shortly.")
webbrowser.open(
'https://piscinadeentropia.es/Sword'
)
if help1 == ("f"):
print ("Closing...")
time.sleep (2)
if userName == "a":
print ("I am a program called Sword that is used to generate secure passwords.")
time.sleep(4)
#Version
if userName == "b":
print ("You are currently in the Lite version of Sword")
#ERRORES
if userName == "e":
webbrowser.open("https://github.com/Isaaker/Sword/issues/new")
#Creditos
if userName == "c":
print ("Author:Isaaker, Powered by: Phyton 3, Stored at: GitHub, Under License: Creative Commons Attribution-ShareAlike 4.0 International Public License.")
print ("To see the program license go to: https://github.com/Isaaker/Sword/blob/main/LICENSE.txt")
time.sleep(10)
#Creador de Contraseñas
if userName == "d":
#Preference
print ("A.PIN")
print ("B.Password")
tipo = input ("Choose ")
if tipo == ("a"):
#Leght
longitud = input ("Password length, please?")
#Quantity
cantidad = input ("How many passwords do you want?")
cantidad = int(cantidad)
longitud = int(longitud)
#Crete
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters2)
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
#Asistant
print ("---------")
print (nombre)
print ("your password(s) are listed above")
time.sleep(4)
print ("Thank you for using our program")
time.sleep(4)
if tipo == ("b"):
#Length
longitud = input ("Password length, please? ")
if longitud == ("8"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("7"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("6"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("5"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("4"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("3"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("2"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("1"):
print ("Creating a password of less than 8 characters is dangerous")
if longitud == ("0"):
print ("Creating a password of less than 8 characters is dangerous")
else:
print (" ")
#Quantity
cantidad = input ("How many passwords do you want? ")
cantidad = int(cantidad)
longitud = int(longitud)
print("A. Generate password (All character types are used)")
print("B. Advanced Settings (You can select which characters you want to use)")
creatormenu = input ("")
#Create
if creatormenu == ("a"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(unificado)
print ("If you have requested more passwords the process will be repeated.")
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if creatormenu == ("b"):
print ("A.Only letters")
print ("B.Uppercase only")
print ("C.Capital letters and letters")
print ("D.Letters and Numbers")
print ("E.Capitalization and Numbers")
print ("F.Special characters only")
print ("G.Letters and Characters")
print ("H.Capitalization and Characters")
print ("I.Numbers and Characters")
print ("J.Exit")
print ("TO USE ONLY NUMBERS USE THE PIN OPTION")
avanzado = input ("")
if avanzado == ("a"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters4)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("b"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters3)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("c"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters5)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("d"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters6)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("e"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters7)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("f"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters1)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("g"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters9)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("i"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters8)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("h"):
for p in range(cantidad):
for c in range(longitud):
contraseña += random.choice(characters10)
print ("--------")
#Delivery
print ("----------")
print ("Name:")
print (nombre)
print ("Password:")
print (contraseña)
if avanzado == ("j"):
break
#Asistant
print ("---------")
time.sleep (4)
print (nombre)
print ("your password(s) are listed above")
time.sleep(4)
#Start / End
if userName == ("f"):
despassword_en()
characters_en()
if userName == ("g"):
print ("Thank you for using our program")
print ("Sword Lite")
exit()
if language == ("b"):
#Español
print ("Has elejido Español")
print (" ")
nombre = input ("Su nombre por favor ")
if nombre == ("Sword"):
print ("¡¡¡Oye pues yo tambien me llamo asi!!!")
if nombre == ("Isaaker"):
print ("Hola padre")
else:
print ("Bienvenid@a:")
print (nombre)
while True:
#Start Menu opciones
print (" ")
print ("A.¿Que eres?")
print ("B.Version")
print ("C.Creditos")
print ("D.Crear contraseña")
print ("E.Informar de un fallo o crear una sugerencia")
print ("F.Comprobar mi contraseña")
print ("G.Salir")
print ("?(Ayuda)")
userName = input ("Elije una opcion ")
print (" ")
#¿Que eres?
if userName == ("?"):
print ("Hola Bienvenido a el portal de Ayuda")
time.sleep (1)
print ("Aqui podras encontrar informacion importante acerca de este programa")
time.sleep (1)
print ("------------------------------")
print ("A.Instrucciones de Uso")
print ("B.Consultar Codigo Fuente")
print ("C.Consultar la licencia")
print ("D.Crear Contraseñas")
print ("E.Ver la pagina oficial de Sword")
print ("F.Salir")
time.sleep (2)
help1 = input ("¿En que te puedo ayudar? ")
if help1 == ("a"):
print (" ")
print ("Instrucciones de uso de Sword 1.3:")
print ("Para Comenzar Sword le preguntara su idioma, despues su nombre por razones puramente de personalizacion, una vez que lo obtenga le mostrara un menu con letras delante SOLO DEBE TECLEAR LA LETRA aunque se encuentre en mayusculas tecle la letra en minusculas. Despues de obtener sus seleccion le llevara a su eleccion, siendo el caso de Crear Contraseña a otro menu (Leer Articulo de Ayuda sobre: Crear Contraseñas).")
if help1 == ("b"):
print ("En breve se abrira una ventana del navegador")
webbrowser.open(
'https://github.com/Isaaker/Sword'
)
if help1 == ("c"):
print ("En breve se abrira una ventana del navegador")
webbrowser.open(
'https://github.com/Isaaker/Sword/blob/main/LICENSE.txt'
)
if help1 == ("d"):
print ("Para Crear una contraseña debes dirigirte al respectivo menu (leer Instrucciones de Uso) despues le preguntara si desea un PIN que es igual que lo que usa para desbloquear el telefono o una Contraseña Normal que es lo que usas por ejemplo para desbloquear un ordenador y despues te realizara unas cuantas preguntas mas y... Listo!")
if help1 == ("e"):
print ("En breve se abrira una ventana del navegador")
webbrowser.open(
'https://piscinadeentropia.es/Sword'
)
if help1 == ("f"):
print ("Cerrando...")
time.sleep (2)
if userName == "a":
print ("Soy un programa llamado Sword que se usa para generar contraseñas seguras")
time.sleep(4)
#Version
if userName == "b":
print ("Actualmente se encuentra en la version Lite de Sword")
#ERRORES
if userName == "e":
webbrowser.open("https://github.com/Isaaker/Sword/issues/new")
#Creditos
if userName == "c":
print ("Autor: Isaac Hernán, Powered: Phyton 3, Almacenado en: GitHub, Bajo licencia: Creative Commons Attribution-ShareAlike 4.0 International Public License.")
print ("Para ver la licencia del programa dirigete a: https://github.com/Isaaker/Sword/blob/main/LICENSE.txt")
time.sleep(10)
#Creador de Contraseñas
if userName == "d":
#Preference
print ("A.PIN")
print ("B.Contraseña normal")
tipo = input ("Elije ")
if tipo == ("a"):
#Leght
longitud = input ("¿Longitud de la contraseña?")
#Quantity
cantidad = input ("¿Cuantas contraseñas necesitas?")
cantidad = int(cantidad)
longitud = int(longitud)
#Crete
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters2)
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
#Asistant
print ("---------")
print (nombre)
print ("Tus contraseñas las podras encontrar debajo")
time.sleep(4)
print ("Gracias por usar nuestro programa")
time.sleep(4)
if tipo == ("b"):
#Length
longitud = input ("¿Longitud de la contraseña? ")
if longitud == ("8"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("7"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("6"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("5"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("4"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("3"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("2"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("1"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
if longitud == ("0"):
print ("Crear una contraseña inferior a 8 caracteres es peligroso")
else:
print (" ")
#Quantity
#Quantity
cantidad = input ("¿Cuantas contraseñas necesitas? ")
cantidad = int(cantidad)
longitud = int(longitud)
print("A. Generar contraseña (Se utilizaran todos los tipos de caracteres)")
print("B. Ajustes advanzados (Puede seleccionar los caracteres que desea utilizar)")
creatormenu = input ("")
#Create
if creatormenu == ("a"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(unificado)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if creatormenu == ("b"):
print ("A.Solo letras")
print ("B.Solo Mayusculas")
print ("C.Mayusculas y letras")
print ("D.Letras y Numeros")
print ("E.Mayusculas y Números")
print ("F.Solo Caracteres especiales")
print ("G.Letras y Caracteres")
print ("H.Mayusculas y Caracteres")
print ("I.Numeros y Caracteres")
print ("J.Salir")
print ("PARA USAR SOLO NUMEROS USA LA OPCION PIN")
avanzado = input ("")
if avanzado == ("a"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters4)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("b"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters3)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("c"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters5)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("d"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters6)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("e"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters7)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("f"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters1)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("g"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters9)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("i"):
for p in range(cantidad):
contraseña = ""
for c in range(longitud):
contraseña += random.choice(characters8)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("h"):
for p in range(cantidad):
for c in range(longitud):
contraseña += random.choice(characters10)
print ("--------")
#Delivery
print ("----------")
print ("Nombre:")
print (nombre)
print ("Contraseña:")
print (contraseña)
if avanzado == ("j"):
break
if userName == ("f"):
despassword_es()
characters_es()
if userName == ("g"):
print ("Gracias por usar nuestro programa")
print ("Sword Lite")
exit()
#End