MD5 With salt how to save only cracked hash with email etc - 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: MD5 With salt how to save only cracked hash with email etc (/thread-7445.html) |
MD5 With salt how to save only cracked hash with email etc - mehashingalone - 04-14-2018 I want to output all the cracked hash and email with IP address. For example i have this for cracking Code: XXXXX cbecfde42ea890a56a236XXXXXXXXX o~?L^t8SXFN7}6Q"V=yYoU29x9i*-G XXXXXXmail@XXXX.com 218.XX.217.XXX but after cracking this i want to output only the cracked hash with all the line for example Code: XXXXX mypassword XXXXXXmail@XXXX.com 218.XX.217.XXX I don't want to output the uncracked hash or it's entire line how can i achieve this. RE: MD5 With salt how to save only cracked hash with email etc - royce - 04-14-2018 Scripting. There's no canned way to do this. You could group your other data into an overloaded username field, and then use --username. RE: MD5 With salt how to save only cracked hash with email etc - mehashingalone - 04-14-2018 This is the sample of the file xxxxxxxxx@gmail.com:f9270fb62c277f63492d6xxxxxxxxxxxxxxxxxxx This is not MD5 with salt but to get the basic idea i started to crack with the file which has email and hash i am using this command Code: hashcat64.exe -m 0 --username -o cracked.txt C:\Users\dev\Desktop\hashcat-4.1.0\hash.txt C:\Users\hashcat\Desktop\hashcat-4.1.0\masks\rockyoualone.txt but i get this error Code: Hashfile 'C:\Users\hashcat\Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 1 (xxxxxx...2c277f63492d61de6846f92b35d8fb97): Line-length exception RE: MD5 With salt how to save only cracked hash with email etc - undeath - 04-14-2018 incorrect hash mode and/or missing salt RE: MD5 With salt how to save only cracked hash with email etc - mehashingalone - 04-16-2018 yes i was using the incorrect hash mode sorry. Now everything is ok thanks a lot |