Posts: 8
Threads: 3
Joined: Sep 2012
hello world
I´m trying to run oclHashcat-plus in Hybrid mode but I get this 'permission denied' error on my wordlist folder
however I can run it on straight mode using the same dic folder
what am I doing wrong?
Posts: 803
Threads: 135
Joined: Feb 2011
Is your dictionnary already opened or used anywhere else ?
Posts: 5,185
Threads: 230
Joined: Apr 2010
Hybrid mode does not support folders
Posts: 8
Threads: 3
Joined: Sep 2012
<quote>Hybrid mode does not support folders </quote>
that´s no good
not even multiple files
why?
Posts: 803
Threads: 135
Joined: Feb 2011
10-06-2012, 12:35 AM
(This post was last modified: 10-06-2012, 12:35 AM by Mem5.)
for multiple files, use type and stdin (or cat under linux) :
Code:
type *.dic | hashcat.exe ...
It'll take all the *.dic files.
Posts: 414
Threads: 14
Joined: Mar 2012
@
Mem5::
-a6|7 must work with real dict file. Stdin will not work.
Posts: 803
Threads: 135
Joined: Feb 2011
OK, as it works with oclhashcat-* I thought it'll work with hashcat too =)
Posts: 2,936
Threads: 12
Joined: May 2012
use a loop.
Code:
for wordlist in wordlists/*.txt; do hashcat ... -a 6 $wordlist ?d?d?d; done