Can't find dics folder
#1
Hi,
Using ocl-plus v0.09 with hd6990, I specify as a dictionary a folder like this :
Quote:oclHashcat-plus64.exe -m 2500 "cap.hccap" "C:\dics\*.dic"

oclHashcat-plus v0.09 by atom starting...
...
C:\dics\*.dic: No such file or directory

ocl-plus v0.08 was working with folders, but v0.09 does not ?

Thanks.
#2
You shouldn't have to give it *.dic, just give it the directory and it will run through everything in it
#3
*.dic mean only .dic files, not everything. Is there a way to specify only .dic files?
#4
Weird.
This used to work on 0.08:
Code:
hc64p 00000000000000000000000000000000 d\*.dic
But not anymore with 0.09, 0.09 is not even accepting a directory.

But you can workaround it, on Windows:
Code:
type d\*.dic | hc64p 00000000000000000000000000000000
STDIN mode.
#5
Thanks for report, will be fixed in next version.
#6
(09-10-2012, 02:26 AM)M@LIK Wrote: But you can workaround it, on Windows:
Code:
type d\*.dic | hc64p 00000000000000000000000000000000
STDIN mode.
Yes weird.
I do a loop on *.dic, it works ok too.

(09-10-2012, 10:18 AM)atom Wrote: Thanks for report, will be fixed in next version.
Thanks.