No output file created - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html) +--- Thread: No output file created (/thread-3405.html) |
No output file created - SiNTEx - 05-22-2014 I'm trying to recover some MD5 hashes but i have problem with output file, which is not being created. I'm working with oclHashcat for first time so please excuse me if there is some stupid mistake. my command: Code: cudaHashcat64.exe -m 0 -a 3 --outfile=testresult.txt --outfile-format=3 hashes.txt ?a result: Code: cudaHashcat v1.20 starting... RE: No output file created - curlyboi - 05-22-2014 Check that you have write permission to that directory. RE: No output file created - SiNTEx - 05-22-2014 (05-22-2014, 11:07 AM)curlyboi Wrote: Check that you have write permission to that directory. Thanks for fast reply. I have set cudaHashcat64.exe to run as administrator and write permissions for all users for that directory and it still doesn't work. RE: No output file created - philsmd - 05-22-2014 oclHashcat 1.20 has some new features to remove hashes if they were already cracked. For instance, if the hash:plain line is (also) present in the pot file (cudaHashcat.pot in your case), then cudaHashcat won't try to crack that specific hash again and again, therefore it says 1/x recovered (if present in .pot file)... Another such feature is the so-called outfile remove feature, where hashes can be removed if the identical hashes (w/ corresponding password - plain) is present in the outfile directory (this feature is used heavily in distributed environments) ... So to see what is happening in you specific case, I would suggest to test: 1. w/o --outfile option 2. backup and remove (or simply move) cudaHashcat.pot, s.t. we are sure that the "potfile remove" feature doesn't trigger in your case 3. test also if the outfile remove feature doesn't trigger There are also some possibilities to (temporarily) disable those features, e.g w/ --potfile-disable and --outfile-check-timer 0 etc RE: No output file created - SiNTEx - 05-22-2014 Thanks a lot, --potfile-disable helped. Problem was that I didn't fully understand --show parameter. I thought it shows only just cracked hashes during cracking. I have one more question. How hashcat determinate what to show, is it session, name of file with hasehs or sometihing else? |