First time programming!!
I've created a password checker that first checks to see if the password is between 6 and 14 characters long. If it isn't, it asks the user to re input a password. Once accepted it, then checks the password strength and outputs whether the password is strong or weak. I am trying to figure out how to record every invalid password attempt to a text file . that records whether it was less than min_length
or greater than max_length
with date and time and I'm absolutely lost.
I have looked up many sites and tutorials for possible solutions but don't see a possible solution
MIN_PASSWORD_LENGTH = 6
MAX_PASSWORD_LENGTH = 14
password = input("Enter Your Password: ")
password_length = len(password)
while True:
if password_length < MIN_PASSWORD_LENGTH:
print("Password Rejected - Password must be between 6 and 14 characters long")
password = input("Enter your password: ")
elif password_length > MAX_PASSWORD_LENGTH:
print("Password Rejected - Password must be between 6 and 14 characters long")
password = input("Enter your password: ")
else:
print("Password Accepted")
break
special = ['!','@','#','$','%','^','&','*','(',')']
letters_found = 0
digits_found = 0
specials_found = 0
for ch in password:
if ch.isalpha():
letters_found = 1
if ch.isdigit():
digits_found = 1
if ch in special:
specials_found = 1
if digits_found and letters_found and specials_found:
break
password_strength = letters_found + digits_found + specials_found
if password_strength >=2:
message = "Password is Strong!"
else:
message = ",Password is Weak!"
print("Your Password is",(password_length),"characters long.",(message))
Would like to be able record everytime a user enters an invalid password and record the date time, and the reason why it was invalid in this case less than 6 or greater than 14
I recommend the use of the
logging
module inPython
:Add this to your code where you want to log. You can use f-strings to modify these messages and log the password as well.