email:hash to email:unhash? - 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: email:hash to email:unhash? (/thread-4200.html) |
email:hash to email:unhash? - darkkys - 03-21-2015 Hey guys! I've started using hashcat, did a bit of research, and asked some friends, but can't find the answer to do this. I have an .txt file with email:hash how can I crack and get as output email:password? Thanks in advance. I'm trying: hashcat -m 5000 -a 0 -o cracked.txt --username "list-email:pass" wordlist and I'm getting separator unmatched" RE: email:hash to email:unhash? - kartan - 03-23-2015 Just prepare your file in advance with something like this: echo $time | awk '{split($0,a,":"); print a[1]}' When you are done cracking just match the hash:plain with your first list. RE: email:hash to email:unhash? - darkkys - 03-26-2015 (03-23-2015, 09:32 PM)kartan Wrote: Just prepare your file in advance with something like this: Isn't there a way to do it on Windows? RE: email:hash to email:unhash? - Szulik - 03-26-2015 plz look at ULM RE: email:hash to email:unhash? - atom - 03-27-2015 I'd recommend to stick to --username and --show http://hashcat.net/forum/thread-4136.html |