Hashcat combining two wordlists - 0 progress - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: Hashcat combining two wordlists - 0 progress (/thread-5169.html) |
Hashcat combining two wordlists - 0 progress - zozeri - 02-12-2016 Hi, I am attempting to use hashcat with two wordlists, the command is as follows; Code: hashcat -m 2500 -a 1 handshake.hccap firstList.txt secondList.txt firstList contains words of length 10, secondlist contains words of length 4. I am trying to get it to use every combination of the words but my result is as follows; Code: Input.Mode: Dict (firstList.txt) It doesn't look like its combining the lists, and there is no progress... I will leave it running for the next 15 minutes or so. If I bypass this it will run on the second list; Code: Input.Mode: Dict (secondList.txt) So it seems to be working on the second list only but not as expected. How can I optimise the command to get it to work as expected? Thank you. ******* I have come across this guide: https://hashcat.net/wiki/doku.php?id=combinator_attack so I am using the wrong version of hashcat. What command can I use to combine the two wordlists into one so that I can attempt this in hashcat? Thanks RE: Hashcat combining two wordlists - 0 progress - Xanadrel - 02-12-2016 Use combinator.bin, pipe its output in a fifo, use the fifo as the wordlist in hashcat with attack mode 0. RE: Hashcat combining two wordlists - 0 progress - rico - 02-12-2016 https://hashcat.net/wiki/doku.php?id=hashcat_utils#combinator RE: Hashcat combining two wordlists - 0 progress - zozeri - 02-14-2016 (02-12-2016, 02:05 PM)Xanadrel Wrote: Use combinator.bin, pipe its output in a fifo, use the fifo as the wordlist in hashcat with attack mode 0. Hi, thanks for the reply. I have managed with combinator.bin to generate a wordlist but rather than output the file I want to pipe it to hashcat as the wordlist - I am not sure what fifo is but I take it its some sort of 'first in first out' list structure. Can you elaborate or give me an idea of how to do this? ****EDIT**** This is what I am currently trying Code: hashcat -m 2500 -a 0 FileToCrack.hccap | ./combinator.bin firstList.txt secondList.txt The result is as if I am just running the combinator by itself - printing to terminal the wordlist. I have also tried reversing the commands Code: ./combinator.bin firstList.txt secondList.txt | hashcat -m 2500 -a 0 FileToCrack.hccap Hashcat now runs but only goes through the first wordlist. RE: Hashcat combining two wordlists - 0 progress - Xanadrel - 02-14-2016 Use mkfifo, pipe the output of combinator.bin in the fifo, hashcat doesn't support stdin so piping won't work. Something like that : Code: mkfifo blah RE: Hashcat combining two wordlists - 0 progress - zozeri - 02-14-2016 Ok I have tried but it just seems to be doing the same as just using combinator to output a file. I have added piping between the combinator and hashcat as follows; Code: mkfifo blah.txt The result of the above is this; Code: mkfifo: cannot create fifo ‘blah.txt’: File exists I have tried with and without piping in every combination possible not sure what to do here. RE: Hashcat combining two wordlists - 0 progress - Xanadrel - 02-14-2016 Do you even know how to use your own system ? You are passing 4 names to mkfifo with your command, you're not calling combinator.bin at all and you're trying to pipe into hashcat which is not possible. I didn't put the commands on individual lines to make it pretty, you either run combinator.bin & hashcat in individual terminals, or you run it detached. Code: $ head left right So for example : Code: $ mkfifo blah && ./combinator.bin left right > blah & RE: Hashcat combining two wordlists - 0 progress - zozeri - 02-22-2016 (02-14-2016, 03:56 PM)Xanadrel Wrote: Do you even know how to use your own system ? Thanks, I managed with this. |