Generate strong random passwords

This commit is contained in:
jvoisin 2020-05-09 14:24:20 +02:00
parent 189243a9b0
commit 2a1bf2fa71
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ def reset_password(user_id):
def generate_random_password():
s = "abcdefghijklmnopqrstuvwxyz01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ!@#$%&*()?"
passlen = 8
return "".join(random.sample(s, passlen))
return "".join(s[c % len(s)] for c in os.urandom(passlen))
################################## External interface