Skip to content

/etc/passwd password hash generator #1578

New issue

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

Open
3 tasks done
a-zhenya opened this issue May 13, 2025 · 0 comments
Open
3 tasks done

/etc/passwd password hash generator #1578

a-zhenya opened this issue May 13, 2025 · 0 comments
Labels
enhancement New feature or request triage

Comments

@a-zhenya
Copy link

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?

salt = "".join(random.choices(string.ascii_letters + string.digits, k=16))
salt = "$6$" + salt + "$"  # $6$ indicates SHA-512
hashed_password = crypt.crypt(password, salt)

Additional context

No response

Validations

  • Check the feature is not already implemented in the project.
  • Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
  • Check that the feature can be implemented in a client side only app (IT-Tools is client side only, no server).
@a-zhenya a-zhenya added enhancement New feature or request triage labels May 13, 2025
sharevb added a commit to sharevb/it-tools that referenced this issue Jun 1, 2025
sharevb added a commit to sharevb/it-tools that referenced this issue Jun 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request triage
Projects
None yet
Development

No branches or pull requests

1 participant