implement prevention of password leak when adding new user
This commit is contained in:
parent
4f77cc464f
commit
e18c287d92
2
auth.py
2
auth.py
|
@ -14,7 +14,7 @@ def authenticate(username, hashed_password, pwdb):
|
|||
return hashed_password == pwdb[username]
|
||||
|
||||
def add_user(username, pwdb):
|
||||
pwdb[username] = pwhash(input(f'Enter password for {username}: '))
|
||||
pwdb[username] = pwhash(getpass(f'Enter password for {username}: '))
|
||||
return pwdb
|
||||
|
||||
def read_pwdb(PWDB_PATH):
|
||||
|
|
Loading…
Reference in a new issue