Skip to content

Commit 659f4f0

Browse files
author
Federico
committed
added source
1 parent c70fb25 commit 659f4f0

File tree

1 file changed

+5
-1
lines changed
  • starter_projects/common_password_checker

1 file changed

+5
-1
lines changed

starter_projects/common_password_checker/main.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
def check_password(password: str):
2-
"""Checks whether a password is in the 100.000 most common passwords."""
2+
"""
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+
"""
37

48
# Open up the file with most common passwords
59
with open('passwords.text', 'r') as file:

0 commit comments

Comments
 (0)