![]() |
cuda hashcat beginner Qs - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: cuda hashcat beginner Qs (/thread-3791.html) |
cuda hashcat beginner Qs - RyXaL~Root - 10-28-2014 Hi, I installed cuda for my Nvida GPU. Is there a possibility to check if it's working correctly with cudaHashcat? In the wiki I found this post regarding WPA2: oclHashcat64.exe -m 2500 -r rules/best64.rule capture.hccap rockyou.txt pause I have multiple wordlists. Let's say I put 20 or 30 in one folder, is there a possibility to tell hashcat to successively use every list?? May I add --outfile=FILE anywhere in my line above to actually write the recovered things in a file? I use hashcat in w7. TIA RE: cuda hashcat beginner Qs - Smashcat - 10-28-2014 Wondering the same about outputting the recovered password RE: cuda hashcat beginner Qs - Mem5 - 10-28-2014 (10-28-2014, 01:59 PM)RyXaL~Root Wrote: is there a possibility to tell hashcat to successively use every list??Yes if you specify a folder and not a file. Something like "C:\dics\*.txt" or even "C:\dics" (10-28-2014, 01:59 PM)RyXaL~Root Wrote: May I add --outfile=FILE Please read the help : Code: -o, --outfile=FILE Define outfile for recovered hash RE: cuda hashcat beginner Qs - Smashcat - 10-28-2014 sorry to hijack Mem5 the batchfile I have made looks like this oclHashcat64.exe -m 2500 capture.hccap rockyou.txt -o,--outfile= hash.txt pause hash.txt is a blank txt document in the same directory as oclhashcat64.exe everything seems to work in the batch file when executed but nothing ever gets saved into the hash.txt file what am I doing wrong? RE: cuda hashcat beginner Qs - RyXaL~Root - 10-29-2014 (10-28-2014, 08:41 PM)Mem5 Wrote:(10-28-2014, 01:59 PM)RyXaL~Root Wrote: is there a possibility to tell hashcat to successively use every list??Yes if you specify a folder and not a file. Something like "C:\dics\*.txt" or even "C:\dics" okay, thanks! I'll test it with a folder instead of a list file.. |