Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

A python script to check whether the password is strong or not

Conditions for Strong Password:

  • Length of the entered password should not be greater than 15
  • The entered password should have at least one uppercase letter
  • Password should have at least one lowercase letter
  • The entered password should have at least one numeral
  • The entered password should have at least one of the symbols $@#_*

Running the script in UNIX

  • open Password_Checker folder in terminal
  • Run the following commands
chmod +x password_checker.py
./password_check.py

OUTPUT

Image