hashcat Forum
permission denied in hybrid mode - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html)
+--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html)
+--- Thread: permission denied in hybrid mode (/thread-1623.html)



permission denied in hybrid mode - jofre - 10-05-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?


RE: permission denied in hybrid mode - Mem5 - 10-05-2012

Is your dictionnary already opened or used anywhere else ?


RE: permission denied in hybrid mode - atom - 10-05-2012

Hybrid mode does not support folders


RE: permission denied in hybrid mode - jofre - 10-05-2012

<quote>Hybrid mode does not support folders </quote>

that´s no good Sad

not even multiple files

why?


RE: permission denied in hybrid mode - Mem5 - 10-06-2012

for multiple files, use type and stdin (or cat under linux) :
Code:
type *.dic | hashcat.exe ...
It'll take all the *.dic files.


RE: permission denied in hybrid mode - M@LIK - 10-06-2012

@Mem5:: -a6|7 must work with real dict file. Stdin will not work.


RE: permission denied in hybrid mode - Mem5 - 10-06-2012

OK, as it works with oclhashcat-* I thought it'll work with hashcat too =)


RE: permission denied in hybrid mode - epixoip - 10-06-2012

use a loop.

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