Python-World / python-mini-projects

A collection of simple python mini projects to enhance your python skills
https://python-world.github.io/python-mini-projects/#/
MIT License
14.83k stars 4.84k forks source link

Weak Password Creation #447

Closed KhyalKara closed 3 years ago

KhyalKara commented 3 years ago

Description

The script python-password-generator.py uses random.sample to pick unique characters, without allowing repetition of characters.

In short the number of possible passwords is greatly reduced Code in Question

Proposed Fix:

# Instead Use:
random.choices(total, k=length)

Type of issue