|
|
@ -33,8 +33,9 @@ def generate_list_from_emails(infile): |
|
|
|
usr = addy.split("@")[0] |
|
|
|
usr = addy.split("@")[0] |
|
|
|
if usr in cur: |
|
|
|
if usr in cur: |
|
|
|
continue |
|
|
|
continue |
|
|
|
pwd = crypt.crypt(secrets.token_urlsafe(10), crypt.mksalt()) |
|
|
|
opwd = secrets.token_urlsafe(10) |
|
|
|
key.append((usr, pwd)) |
|
|
|
pwd = crypt.crypt(opwd, crypt.mksalt()) |
|
|
|
|
|
|
|
key.append((usr, opwd)) |
|
|
|
add_user(usr, pwd) |
|
|
|
add_user(usr, pwd) |
|
|
|
print(key) |
|
|
|
print(key) |
|
|
|
|
|
|
|
|
|
|
|