We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
New tool idea
Create a tool that generates a salt and password hash and/or full /etc/shadow entry for a given password
salt = "".join(random.choices(string.ascii_letters + string.digits, k=16)) salt = "$6$" + salt + "$" # $6$ indicates SHA-512 hashed_password = crypt.crypt(password, salt)
No response
The text was updated successfully, but these errors were encountered:
feat(Htpasswd Generator): add md5, apr1, sha256 and sha512
4313ce9
Fix CorentinTh#1578
64a2119
No branches or pull requests
What type of request is this?
New tool idea
Clear and concise description of the feature you are proposing
Create a tool that generates a salt and password hash and/or full /etc/shadow entry for a given password
Is their example of this tool in the wild?
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: