cuda hashcat beginner Qs
#1
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
#2
Wondering the same about outputting the recovered password
#3
(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
All your recovered hashes will go inside the defined file.
#4
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?
#5
(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"

(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
All your recovered hashes will go inside the defined file.

okay, thanks! I'll test it with a folder instead of a list file..