Common mkpasswd commands for generating a SHA-512 password hash on Linux.
mkpasswd generates a salted hash in the same format Linux stores in /etc/shadow, which is useful when creating test accounts or crafting shadow file entries during an engagement.
mkpasswd -m sha512 password_here # Generate a SHA-512 crypt hash for the given password



