Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/medss19/uid_pass
A Python script for creating and storing secure user IDs and passwords, ensuring password strength and preventing duplicate user IDs.
https://github.com/medss19/uid_pass
Last synced: 7 days ago
JSON representation
A Python script for creating and storing secure user IDs and passwords, ensuring password strength and preventing duplicate user IDs.
- Host: GitHub
- URL: https://github.com/medss19/uid_pass
- Owner: medss19
- Created: 2023-11-17T05:22:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-17T05:23:08.000Z (about 1 year ago)
- Last Synced: 2023-11-17T06:51:36.327Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Secure User ID and Password Storage
Securely store user IDs and passwords with this simple Python script. The program ensures password strength and prevents the use of duplicate user IDs.
## How to Use
1. Run the script, and it will prompt you to enter a user ID.
2. If the entered user ID is unique, the script will prompt you to create a strong password.
3. The password must be at least 8 characters long and include a combination of alphabets, digits, and special characters.
4. Once a strong password is entered, the user ID and password combination will be stored securely.## Password Strength Check
- The script checks for password strength by verifying the presence of alphabets, digits, and special characters.
- If the password is weak, the script prompts you to create a stronger password.## Preventing Duplicate User IDs
- The script reads existing user IDs from a file ("sec.txt") and checks for duplicates.
- If the entered user ID is already in use, the script prompts you to choose another one.## How to Run
1. Execute the script in a Python environment.
2. Follow the prompts to enter a user ID and create a strong password.## Important Note
- Ensure that the "sec.txt" file is in the same directory as the script for proper functionality.
**Secure your user IDs and passwords with this straightforward Python script.**