hashcat Forum
DES Hash - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: DES Hash (/thread-8137.html)



DES Hash - ich - 02-08-2019

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


RE: DES Hash - philsmd - 02-08-2019

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)


RE: DES Hash - ich - 02-09-2019

Thank you!