permission denied in hybrid mode
#1
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?
#2
Is your dictionnary already opened or used anywhere else ?
#3
Hybrid mode does not support folders
#4
<quote>Hybrid mode does not support folders </quote>

that´s no good Sad

not even multiple files

why?
#5
for multiple files, use type and stdin (or cat under linux) :
Code:
type *.dic | hashcat.exe ...
It'll take all the *.dic files.
#6
@Mem5:: -a6|7 must work with real dict file. Stdin will not work.
#7
OK, as it works with oclhashcat-* I thought it'll work with hashcat too =)
#8
use a loop.

Code:
for wordlist in wordlists/*.txt; do hashcat ... -a 6 $wordlist ?d?d?d; done