Posts: 2
Threads: 1
Joined: Oct 2014
10-28-2014, 01:59 PM
(This post was last modified: 10-28-2014, 02:02 PM by RyXaL~Root.)
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
Posts: 4
Threads: 1
Joined: Oct 2014
Wondering the same about outputting the recovered password
Posts: 803
Threads: 135
Joined: Feb 2011
10-28-2014, 08:41 PM
(This post was last modified: 10-28-2014, 08:41 PM by Mem5.)
(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.
Posts: 4
Threads: 1
Joined: Oct 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?
Posts: 2
Threads: 1
Joined: Oct 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"
(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..