Need help for school project - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Need help for school project (/thread-2734.html) |
Need help for school project - niklaskar - 10-23-2013 Hi there, I need help for a school project. I have to bruteforce plain md5,sha1;salted md5,sha1; as well as using dictionary attacks. I have managed to bruteforce plain md5&sha1 using following options: Code: ./hashcat-cli32.bin --output-file=cracked.txt -m 100 -a 3 -bf-pw-max=6 -bf-cs-buf=0123456789abcdefghijklmnopqrstuvwyzABCDEFGHIJKLMNOPQRSTUVWXYZ list_sha1.txt dict/ Not exactly sure, what "dict/" helped but it made hashcat execute. Now I want to bruteforce salted md5 and sha1 hashes. The hashing is done like "md5($pass.$salt)". The format hash and salt are stored is "$hash:$salt". How do I need to change my options, so that bruteforcing works for salted hashes? Niklas RE: Need help for school project - radix - 10-23-2013 do your own homework, wiki and forums have all you need RE: Need help for school project - niklaskar - 10-23-2013 Yeah I tried that. At the moment I am trying to use this option: Code: ./hashcat-cli32.bin -m 1 list_md5_salt.txt -a 3 ?d?d?d?d Niklas RE: Need help for school project - Rolf - 10-23-2013 Works for me |