cracking salted linux shadow hash: Unable to load due to Line-length
#6
of course it is salted (the part after "$6$" and before the "$hash" part, i.e. "52450745" for this very specific example is the salt) and the whole sha512crypt hash can be generated like this in python:
Code:
import crypt
print crypt.crypt ('hashcat', '$6$52450745')


Messages In This Thread
RE: cracking salted linux shadow hash: Unable to load due to Line-length - by philsmd - 08-11-2016, 09:16 AM