You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script uses random.sample() to generate passwords, which is not cryptographically secure and can produce predictable values for secrets passwords should be generated with the secrets module (e.g., secrets.choice() or secrets.token_urlsafe()).
The script uses random.sample() to generate passwords, which is not cryptographically secure and can produce predictable values for secrets passwords should be generated with the secrets module (e.g., secrets.choice() or secrets.token_urlsafe()).