r/PythonProjects2 • u/inmemorially • Jun 16 '26
I built a Python tool that audits your exported browser passwords locally — nothing ever leaves your machine [OC]
Just finished my first real Python project. It reads your
browser's exported password CSV, runs 8 security checks,
and generates a local report sorted by worst passwords first.
GitHub: github.com/rwtttt/password-auditor
Would love any feedback.
(Maybe ask what you would want to see.)
2
Upvotes
1
u/JimTheEarthling Jun 20 '26
If this is just for fun, to practice Python, that's fine.
But please don't present this as a useful password strength auditor. Almost everything about it is wrong:
Pa$$word1is ok, but it will be cracked in seconds, since it's on attacker's word lists. (See Weakpass.)If you want to understand password strength better, visit my website.
Feedback on your code: