Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

InfoTc 1040 Introduction to Problem Solving and Programming Password Checker - Python 3.5 To keep a user account safe, its important to have a strong

InfoTc 1040 Introduction to Problem Solving and Programming Password Checker - Python 3.5

To keep a user account safe, its important to have a strong password. In this assignment, youll write a program that checks a users password and indicates how strong it is.

Requirements:

Well evaluate password strength based on the following criteria:

A password should contain

1. upper-case letters

2. lower-case letters

3. numbers

4. symbols (any keyboard character that is not a letter or number)

5. and it should not contain personal information or common words If a password meets

all 5 criteria, it should be rated as very strong

4 criteria, strong

3 criteria, moderate

2 criteria, weak

any less, very weak Passwords that are less than 8 characters long should not be accepted.

To check whether or not a password meets criteria #5, we should start the program by asking the user for their first and last names. Their password should not contain either name. The reason for that is that hackers often try to guess passwords by using personal information. A password that contains personal info is easier to guess. Likewise, there are many common words and phrases that people like to use in their passwords. Well say that a password fails criteria #5 if it contains any of these strings:

password 12345 qwerty letmein dragon baseball football starwars

The program should ask for and test a users password. It should then display the strength of the password and ask the user if theyd like to test another password. The next section contains sample output.

InfoTc 1040 Introduction to Problem Solving and Programming Password Checker Sample Output

Welcome to the password strength checker!

What is your first name? Sally

What is your last name? Smith

Please enter a password to check: air

Your password is too short. It must be at least 8 characters long.

Please enter a password to check: airplane

Your password is rated as: weak

(2) Would you like to test another password (y/n)? y

Please enter a password to check: AirPlane

Your password is rated as: moderate

(3) Would you like to test another password (y/n)? y

Please enter a password to check: AirPlan3

Your password is rated as: strong

(4) Would you like to test another password (y/n)? y

Please enter a password to check: @irPlan3

Your password is rated as: very strong

(5) Would you like to test another password (y/n)? y

Please enter a password to check: baseball

Your password is rated as: very weak

(1) Would you like to test another password (y/n)? y

Please enter a password to check: SallySmith

Your password is rated as: weak

(2) Would you like to test another password (y/n)? n

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Access Patterns Database Interactions In Object Oriented Applications

Authors: Clifton Nock

1st Edition

0321555627, 978-0321555625

More Books

Students also viewed these Databases questions