Way to run user:hash:salt ?
#1
Well hello all, Hxrry here to ask a question regarding hashcat.

This is probably not possible but is there a way that I can run user:hashConfusedalt instead of hashConfusedalt. This would save me loads of time when I am recovering passwords as I don't have to keep remove the email address/username.

Thank you for reading and have a good day all!
#2
--username
?
or use cut
#3
Here's how I do a dic attack with a dos prompt for a username:hash type of list:

your excutable.exe -m (hash type) --username (location of source file) (location of dictionaries)

Now to direct output:

your excutable.exe -m (hash type) --username --show (location of source file) >> (location to direct output)
#4
(04-22-2013, 04:48 PM)rln11 Wrote: Here's how I do a dic attack with a dos prompt for a username:hash type of list:

your excutable.exe -m (hash type) --username (location of source file) (location of dictionaries)

Now to direct output:

your excutable.exe -m (hash type) --username --show (location of source file) >> (location to direct output)

Thanks for the help!