hashcat Forum

Full Version: DES Hash
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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)
Thank you!