MD5 Again..
#1
I have a txt file with some MD5 hashes.
How can i make it to brute-force them and also change encrypted lines into decrypted words in that file?
Something like:
[Txt file]
21232f297a57a5a743894a0e4a801fc3 -> admin
e10adc3949ba59abbe56e057f20f883e -> 123456
#2
hashes are hashed, not encrypted...

when a hash is cracked its written to hashcat.pot. you cant write to the file you are reading from in a run. specify -o cracked.txt or similar to write your cracks to a new file.
#3
(06-22-2018, 08:29 PM)radix Wrote: hashes are hashed, not encrypted...

when a hash is cracked its written to hashcat.pot.  you cant write to the file you are reading from in a run.  specify -o cracked.txt or similar to write your cracks to a new file.

Ok then, how can i import my list into hashcat? Which command?