Parsed list - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: Parsed list (/thread-4192.html) |
Parsed list - camon - 03-18-2015 Possible to load a list like this: user:email:passwordalt In hashcat to make it look like this : user:emailcracked password) thank you RE: Parsed list - epixoip - 03-18-2015 No. RE: Parsed list - magnum - 03-18-2015 (03-18-2015, 02:10 AM)camon Wrote: Possible to load a list like this: If you massage that list using Code: sed -ri 's/:/, /' filename It will end up as user, email:passwordalt And output will be user, emailcracked password) |