We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of just having the option for a random password that is always 14 characters long we would like to have it more configurable.
Options should be:
Additionally we should evaluate whether we are using a proper random generator or if we should switch to something more secure. From a short glimpse we use Math.random which according to: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random should not be used for anything security related.
Math.random
The text was updated successfully, but these errors were encountered:
Blocked by #707
Sorry, something went wrong.
njaeggi
kcinay055679
Successfully merging a pull request may close this issue.
Instead of just having the option for a random password that is always 14 characters long we would like to have it more configurable.
Options should be:
Additionally we should evaluate whether we are using a proper random generator or if we should switch to something more secure. From a short glimpse we use
Math.random
which according to: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random should not be used for anything security related.ToDo:
The text was updated successfully, but these errors were encountered: