Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

The previous SF questions I've seen have lead to answers that produce MD5 hashed password.

Does anyone have a suggestion on to produce an SHA-512 hashed password? I'd prefer a one liner instead of a script but, if a script is the only solution, that's fine as well.

share|improve this question
2  
SHA and MD5 are not encryption. They're hashing algorithms. The crucial difference being that the hashed data is not recoverable. What do you need to do? – SmallClanger Nov 11 '11 at 11:28
Thank you. Modified the question. man 5 shadow refers to it as "encrypted password" so I went along with that term. – Beaming Mel-Bin Nov 11 '11 at 12:22
Apologies if that was a bit snarky. Are you trying to manually generate shadow-compatible password hashes? If so, take a look at your /etc/shadow contents. You'll see $x$salt$hash. x denotes the algorithm used by crypt, with 6 being typical on modern linuxes, which is sha512 (see man 3 crypt). Either of the below answers will produce the same hash, so long as you give it the same salt. – SmallClanger Nov 11 '11 at 13:20
Oh no, not snarky at all. You clarified something I was confused about so I am very thankful sir! – Beaming Mel-Bin Nov 11 '11 at 15:26

9 Answers

up vote 11 down vote accepted

Here's a one liner:

python -c "import crypt, getpass, pwd; print crypt.crypt('password', '\$6\$SALTsalt\$')"

6 is the type of hash 6 = sha512

1 = MD5 2a = Blowfish (not in mainline glibc; added in some Linux distributions) 5 = SHA-256 (since glibc 2.7) 6 = SHA-512 (since glibc 2.7)

I'd recommend you look up what salts are and such and as per smallclamgers comment the difference between encryption and hashing.

Update: The string produced is suitable for shadow and kickstart scripts.

share|improve this answer
Thank you very much!! – Beaming Mel-Bin Nov 11 '11 at 20:30
Importing the getpass and pwd modules is not necessary. – akaihola Feb 16 '12 at 13:17

On Debian you can use mkpasswd to create passwords with different hashing algorithms suitable for /etc/shadow. It is included in the package whois (according to apt-file)

mkpasswd -m sha-512
mkpasswd -m md5

to get a list of available hashing algoritms type:

mkpasswd -m help 

HTH

share|improve this answer
1  
What package provides it? There's a mkpasswd program (part of expect) under Fedora too, but it's useless for this purpose. – Cristian Ciupitu Mar 2 at 2:31
As he said, the version of mkpasswd he's talking about is for Debian/Ubuntu. The mkpasswd on Fedora (at least up to 14) is missing the -m switch. – slm 15 hours ago

Best Answer: grub-crypt

Usage: grub-crypt [OPTION]...
Encrypt a password.

-h, --helpPrint this message and exit
-v, --version           Print the version information and exit
--md5                   Use MD5 to encrypt the password
--sha-256               Use SHA-256 to encrypt the password
**--sha-512             Use SHA-512 to encrypt the password (default)**
share|improve this answer
Simple solution..worked for me on CentOS 6. – Banjer May 1 at 12:15

Why not perform the following check and modification to Centos/RHEL machines to ensure that all password hashing for /etc/shadow is done with sha512. Then you can just set your passworkd normally with the passwd command

#Set stronger password hasing
/usr/sbin/authconfig --test | grep sha512 > /dev/null
if [ $? -ne 0 ]; then
echo "Configuring sha512 password hashing"
sudo /usr/sbin/authconfig --enableshadow --passalgo=sha512 --updateall
fi
share|improve this answer

HASH algos are for producing MESSAGE digests, they are never suitable for passwords, which should use some kind of HKDF ( http://tools.ietf.org/rfc/rfc5869.txt ) - see PBKDF2 or BCrypt

share|improve this answer

Here is a one-liner that uses shell commands to create a SHA-512 hashed password with a random salt:

[root@host] mkpasswd -m sha-512 MyPAsSwOrD $(openssl rand -base64 16 | tr -d '+=' | head -c 16)

Notes

  1. You may need to install the "whois" package (Debian, SuSE, etc.), which provides "mkpasswd".
  2. See crypt(3) for details on the format of lines in "/etc/shadow".
share|improve this answer
Unfortunately the whois package from Fedora 18 doesn't provide any mkpasswd. – Cristian Ciupitu Mar 2 at 2:38
#!/usr/bin/env python

import getpass

from passlib.hash import sha512_crypt

if __name__ == "__main__":
    passwd = getpass.getpass('Password to hash: ')
    hash = sha512_crypt.encrypt(passwd)

    print hash

You can clone it from my github repo if you want: https://github.com/antoncohen/mksha

share|improve this answer

Its not a one liner, but it might help someone:

import crypt, getpass, pwd, string, sys, random
randomsalt = ""
password = getpass.getpass()
choices = string.ascii_uppercase + string.digits + string.ascii_lowercase
for _ in range(0,8):
    randomsalt += random.choice(choices)
print crypt.crypt(password, '$6$%s$' % randomsalt)
share|improve this answer

I'm not sure how SHA-512 is related to /etc/shadow. These passwords are crypted.

But if you want a password hashed with SHA-512 you can do this by echo -n the_password | sha512sum. You can't use the output for /etc/shadow.

share|improve this answer
1  
echo -n the_password so you're not hashing the newline. </pedant> – SmallClanger Nov 11 '11 at 13:14
Passwords in shadow aren't crypt()ed any more since years. Modern systems use at least md5. – Alexander Janssen Oct 3 '12 at 20:40
Actually passwords in shadow are still crypt()ed but the function has been updated to support several different algorithms. Regardless, the method described in this answer does not produce suitable hash for /etc/shadow. The algorithm is more complex than a single SHA-512 hash round. – snap Jan 5 at 0:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.