We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70fb25 commit 659f4f0Copy full SHA for 659f4f0
starter_projects/common_password_checker/main.py
@@ -1,5 +1,9 @@
1
def check_password(password: str):
2
- """Checks whether a password is in the 100.000 most common passwords."""
+ """
3
+ Checks whether a password is in the 100.000 most common passwords.
4
+ Sourced from: https://github.com/danielmiessler/SecLists/blob/master/Passwords/Common-Credentials/10-million-password-list-top-100000.txt
5
+
6
7
8
# Open up the file with most common passwords
9
with open('passwords.text', 'r') as file:
0 commit comments