reading directories with dictionaries in combinator 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: reading directories with dictionaries in combinator mode (/thread-840.html) |
reading directories with dictionaries in combinator mode - sono - 01-20-2012 It seems that in combinator mode (-a 1), there's no possibility to specify whole directory, so hashcat will take all the dictionaries from it, one by one, the way it does in straight mode (-a 0) Code: oclHashcat-plus64.bin -a 1 -o md5.txt md5res.txt "/pwrecovery/_sorted/" "/pwrecovery/atomtest/found.exp.8.txt" It gives the following: Code: oclHashcat-plus v0.07 by atom starting... I think it will be good to grab all the dictionaries from the folder (or folders, if the second "dictionary" will be actually a directory too) and mix them sequentially. P.S.: Offtopic, but somewhat related: I usually create bash scripts with many lines to run hc pointed to different directories. When I break execution by CTRL+C (Putty), it breaks execution of current running hc, but not the whole script. I have to hold down CTRL+C for a while, to wait until it will break execution of all of them until the end of the script. Is it possible to break execution of .sh script? Thanks. RE: reading directories with dictionaries in combinator mode - atom - 01-20-2012 Quote:I think it will be good to grab all the dictionaries from the folder (or folders, if the second "dictionary" will be actually a directory too) and mix them sequentially. do it with a script Quote:I usually create bash scripts with many lines to run hc pointed to different directories. When I break execution by CTRL+C (Putty), it breaks execution of current running hc, but not the whole script. I have to hold down CTRL+C for a while, to wait until it will break execution of all of them until the end of the script. Is it possible to break execution of .sh script? mhm not sure, maybe by checking oclHashcat's rc? RE: reading directories with dictionaries in combinator mode - chort - 01-20-2012 You could also write your script to catch signals and send the process the signal you're trapping. http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=bash+trap+signals RE: reading directories with dictionaries in combinator mode - sono - 01-21-2012 (01-20-2012, 01:43 PM)atom Wrote:Quote:I think it will be good to grab all the dictionaries from the folder (or folders, if the second "dictionary" will be actually a directory too) and mix them sequentially. no problem with that, and with the a script we can do more (filter out certain extensions for example), just thought it should behave the same throughout the program. (01-20-2012, 01:43 PM)atom Wrote:Quote:I usually create bash scripts with many lines to run hc pointed to different directories. When I break execution by CTRL+C (Putty), it breaks execution of current running hc, but not the whole script. I have to hold down CTRL+C for a while, to wait until it will break execution of all of them until the end of the script. Is it possible to break execution of .sh script? sorry, what is rc? (01-20-2012, 10:50 PM)chort Wrote: You could also write your script to catch signals and send the process the signal you're trapping. that's the card! thank you! RE: reading directories with dictionaries in combinator mode - atom - 01-21-2012 rc = returncode |