DES-ECB brute force - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: DES-ECB brute force (/thread-7249.html) |
DES-ECB brute force - khadige - 02-01-2018 Hi I experminting with DES brute force in hashcat but none of the commands below resulted in to finding any key. I should mention that all plaint-text/cipher-text pairs has been checked with openssl encrtyption tool. What is the problem? Code: ./hashcat64.bin -m 14000 47dc9810ade39295:b5866d1dd5cdf934 -a 3 --quiet --hex-charset 6861736863617431 --outfile-format 5 --potfile-disable RE: DES-ECB brute force - undeath - 02-01-2018 what is the string after "--hex-charset" supposed to be? What is the key for each of those ciphertexts? RE: DES-ECB brute force - atom - 02-01-2018 Your hash is formated wrong. See here: Code: root@et:~/hashcat# ./hashcat -m 14000 b5866d1dd5cdf934:47dc9810ade39295 -a 3 --quiet --hex-charset 6861736863617431 --outfile-format 5 --potfile-disable RE: DES-ECB brute force - khadige - 02-01-2018 (02-01-2018, 06:44 PM)undeath Wrote: what is the string after "--hex-charset" supposed to be? What is the key for each of those ciphertexts? Thanks for your response. The string after "--hex-charset" is the correct key. RE: DES-ECB brute force - atom - 02-01-2018 You just have to switch: b5866d1dd5cdf934:47dc9810ade39295 to 47dc9810ade39295:b5866d1dd5cdf934 RE: DES-ECB brute force - khadige - 02-01-2018 (02-01-2018, 07:25 PM)atom Wrote: Your hash is formated wrong. See here: Thanks a million! |