hashcat Forum
Combinator - how to save combined files. - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html)
+--- Thread: Combinator - how to save combined files. (/thread-7645.html)



Combinator - how to save combined files. - neymarjr - 07-06-2018

Hello,

im getting some troubles with saving output after combining 2 word list using Combinator from hashcat utils.

I cant remember how I did before (like a year ago), could you guys help me? I just want to save output to file.

Thanks


RE: Combinator - how to save combined files. - royce - 07-07-2018

I assume that you know that you could just regenerate them when you need them, and save the disk space. Smile

But saving general command output to a file is an OS/commandline thing - just basic redirection.

Code:
$ cat - >test1.txt
test
$ cat - >test2.txt
this
that
$ combinator test1.txt test2.txt >output.txt
$ cat output.txt
testthis
testthat



RE: Combinator - how to save combined files. - neymarjr - 07-28-2018

Hey Royce,

thank you for your reply. As I said before I havent been using Hashcat for a while and I forgot everything related to it. 

Im using Windows CMD, got Hashcat 4.0.1 downloaded same as Hashcat utils. Could you please explain exactly what should I do to combine two words list and save them to txt file? 

I have been trying for half of the day and currently my head is about to explode...


RE: Combinator - how to save combined files. - undeath - 07-28-2018

royce posted the exact commands