Posts: 2
Threads: 2
Joined: Apr 2019
So if I use combinator.exe to combine File1 and File2 wordlists ... can I get it to write to a third file? Because I have no idea where the information is going. It's appearing by on screen scrolling rather fast, but there's no realistic way to copy it from a fake, Windows-based DOS window (especially since it only displays the most recent 500 or so lines).
Posts: 930
Threads: 4
Joined: Jan 2015
08-14-2019, 02:35 AM
(This post was last modified: 08-14-2019, 02:35 AM by royce.)
The canonical way to do this is simply pipe the output of combinator to hashcat itself, so you don't have to store the result anywhere.
combinator list1 list2 | hashcat ...
~
Posts: 5,185
Threads: 230
Joined: Apr 2010
08-14-2019, 11:08 AM
(This post was last modified: 08-14-2019, 11:08 AM by atom.)
Use "combinator list1 list2 > wordlist.txt" to write to a file. works on windows, too.