hashcat Forum

Full Version: Parsed list
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Possible to load a list like this:
user:email:passwordConfusedalt

In hashcat to make it look like this :
user:emailSadcracked password)

thank you
No.
(03-18-2015, 02:10 AM)camon Wrote: [ -> ]Possible to load a list like this:
user:email:passwordConfusedalt

In hashcat to make it look like this :
user:emailSadcracked password)

If you massage that list using
Code:
sed -ri 's/:/, /' filename

It will end up as
user, email:passwordConfusedalt

And output will be
user, emailSadcracked password)