Add special character and numbers inside the password

This commit is contained in:
cami 2021-07-22 00:02:57 +02:00
parent 060f20d25c
commit f00bc19994

View file

@ -23,6 +23,15 @@ def get_random_password():
] ]
second_part = [ second_part = [
"%",
"(",
")",
"$",
"+",
"!",
]
third_part = [
"frisst", "frisst",
"küsst", "küsst",
"begrüsst", "begrüsst",
@ -33,28 +42,76 @@ def get_random_password():
"vergisst", "vergisst",
] ]
third_part = [
"den Vogel",
"die Mücke",
"den Adler",
"den Apfel",
"die Birne",
"die Biene",
"eine Gurke",
]
forth_part = [ forth_part = [
"auf der Terasse.", "1 Vogel!",
"auf der Wiese.", "2 Vögel!",
"im Garten.", "3 Vögel!",
"in der Kühltruhe.", "4 Vögel!",
"auf dem Balkon.", "5 Vögel!",
"6 Vögel!",
"7 Vögel!",
"8 Vögel!",
"9 Vögel!",
"1 Mücke",
"2 Mücken!",
"3 Mücken!",
"4 Mücken!",
"5 Mücken!",
"6 Mücken!",
"7 Mücken!",
"8 Mücken!",
"9 Mücken!",
"1 Adler",
"2 Adler!",
"3 Adler!",
"4 Adler!",
"5 Adler!",
"6 Adler!",
"7 Adler!",
"8 Adler!",
"9 Adler!",
"1 Apfel",
"2 Äpfel!",
"3 Äpfel!",
"4 Äpfel!",
"5 Äpfel!",
"6 Äpfel!",
"7 Äpfel!",
"8 Äpfel!",
"9 Äpfel!",
"1 Birne",
"2 Birnen!",
"3 Birnen!",
"4 Birnen!",
"5 Birnen!",
"6 Birnen!",
"7 Birnen!",
"8 Birnen!",
"9 Birnen!",
"1 Biene",
"2 Bienen!",
"3 Bienen!",
"4 Bienen!",
"5 Bienen!",
"6 Bienen!",
"7 Bienen!",
"8 Bienen!",
"9 Bienen!",
"1 Gurke",
"2 Gurken!",
"3 Gurken!",
"4 Gurken!",
"5 Gurken!",
"6 Gurken!",
"7 Gurken!",
"8 Gurken!",
"9 Gurken!",
] ]
password = "" password = ""
password += str(first_part[get_random_value(len(first_part)-1)]) password += str(first_part[get_random_value(len(first_part)-1)])
password += " " + str(second_part[get_random_value(len(second_part)-1)]) password += " " + str(second_part[get_random_value(len(second_part)-1)])
password += " " + str(third_part[get_random_value(len(third_part)-1)]) password += " " + str(third_part[get_random_value(len(third_part)-1)])
# password += " " + str(forth_part[get_random_value(len(forth_part)-1)]) password += " " + str(forth_part[get_random_value(len(forth_part)-1)])
return password return password