Using multiple dictionaries [noob question..] - 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: Using multiple dictionaries [noob question..] (/thread-2510.html) |
Using multiple dictionaries [noob question..] - eydam - 08-11-2013 Hi, I'm new to hashcat but I got hashcat CPU working with HashcatGUI BalndyUK www.md5decrypter.co.uk - v0.291 (I've downloaded all the latest files) and now I want to do some GPU instead because it seems to be so much faster than CPU. Well I got like 20-30 dictionaries and with the GUI you can only use two at a time but I figured it out that if you remove the path to the two dictionaries and then write the folder where you have all dictionaries (wordlist/) it will use all of them. This worked fine with hashcat CUP but now when I try with GPU it just gives me a error message "wordlist/: Permission denied". I've copied my wordlist folder and placed it in my hashcat-plus folder. Code: oclHashcat-plus64.exe -a 1 -m 0 -p : --session=11171400 --force -o "z:\h-cat\password.txt" --outfile-format=3 --remove --gpu-temp-abort=80 "C:\Users\adam\Desktop\main\Hashes\a2g\a2g -cleaned -1k.txt" "Z:\H-cat\HashcatGUI_0291\oclHashcat-plus-0.14\wordlist\1.txt" wordlist/ CMD Code: Hashes: 986 total, 1 unique salts, 986 digests Thanks in advance RE: Using multiple dictionaries [noob question..] - Rolf - 08-11-2013 Greetings, Adam. You can't do a combination attack with a single wordlist + multiple wordlists in a certain folder, you will have to write multiple lines in the batch file for that. Like: Code: oclHashcat-plus64 [bla bla flags] hashlist wordlist1.txt wordlist2.txt The folder scanning feature works for -a 0 only. Note, it's not fully recursive, if there are folders inside, it will not scan them too. Lastly, you may want to read this. RE: Using multiple dictionaries [noob question..] - atom - 08-12-2013 Also -a6 and -a7 mode will support this with v0.15. |