DES Hash
#1
Hi everyone,
i want to crack a DES hash, which is generated by pythons crypt.crypt().
in the example (https://hashcat.net/wiki/doku.php?id=example_hashes)
this hash is given: "a28bc61d44bb815c:1172075784504605"
But my hash has only a Salt of two characters, like "sd:sdXXXXXXXX8Op"
So i get a Token length exception.
It is possible in hashcat, to crack it
Reply
#2
descrypt is -m 1500 = descrypt, DES (Unix), Traditional DES

the salt is already within the first chars of the "hash", so no need to repeat it (i.e. no need for sd : sd..., it's just the second part)
Reply
#3
Thank you!
Reply