![]() |
Hashcat doesn’t write to output file - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Hashcat doesn’t write to output file (/thread-12188.html) |
Hashcat doesn’t write to output file - theodorebriggs - 10-14-2024 Hello, I am using hashcat to crack a list of md5 hashes and have used the following command Code: hashcat -m 0 -a 0 -o out.txt --force hashdump.txt ../rockyou.txt Code: Session..........: hashcat It is clear that 2 of the hashes have been found, however the file out.txt isn't created. Any advice? Thanks in advance! RE: Hashcat doesn’t write to output file - penguinkeeper - 10-15-2024 1) Hashcat uses something called a "potfile", which means you only crack new hashes and don't have to keep cracking the same hashes that you have already cracked. To see the 2 recovered, you can either use "--potfile-disable" in your existing command to disable the potfile and re-crack the 2 hashes or "--show" to just get the data from your potfile. 2) You seem to be using an older version, I'm not sure what you're on but updating to 6.2.6 is probably a good idea. It won't solve your issue here, though RE: Hashcat doesn’t write to output file - Snoopy - 10-15-2024 NEVER use --force if your hashcat isn't running without, you have some problems with your setup, fix your setup instead of using --force --force can lead to false positives and other unwanted behavior ~1500 Kh/s per second on MD5? What kind of hardware are you using? even a plain consumer CPU frmo years ago will get you megahashes per second RE: Hashcat doesn’t write to output file - theodorebriggs - 10-17-2024 Thanks for your answer. I got it. |