MD5 With salt how to save only cracked hash with email etc
#1
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.
#2
Scripting. There's no canned way to do this. You could group your other data into an overloaded username field, and then use --username.
~
#3
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
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 2 (xxxxxx...6f5b276687f905a94797f59xxxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 3 (xxxxxx...44aaf973c675a8c6d325655xxxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 4 (xxxxxx...605db0799459cba3ef5effdxxxxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 5 (xxxxxx...b27727f5d5e6ef8489943704xxxxxxxx): Line-length exception
No hashes loaded.Desktop\hashcat-4.1.0\hash.txt' on line 1 (xxxxxx...2c277f63492d61de6846f92xxxxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 2 (xxxxxx...6f5b276687f905a94797f595xxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 3 (xxxxxx...44aaf973c675a8c6d3256551xxxxxxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 4 (xxxxxx...605db0799459cba3ef5effd7xxxxxxx): Line-length exception
Hashfile 'C:\Users\hashcat\Desktop\hashcat-4.1.0\hash.txt' on line 5 (xxxxxx...b27727f5d5e6ef8489943704xxxxxxxx): Line-length exception
No hashes loaded
#4
incorrect hash mode and/or missing salt
#5
yes i was using the incorrect hash mode sorry.
Now everything is ok thanks a lot