hashcat Forum
Merge .16800 files into a single one - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: Merge .16800 files into a single one (/thread-9174.html)



Merge .16800 files into a single one - doggod - 04-28-2020

Hi,

I've captured several PMKID files (.16800 extension) from my own multiple networks and I would like to run a single hashcat process to solve all files at the same time. Is there any tool to merge them? It means 1 process=1 mask to get n passwords from 1 single .16800 file (where n files were merged). Otherwise, to convert them to other extension for merging them.

Thanks.


RE: Merge .16800 files into a single one - philsmd - 04-28-2020

Linux:
Code:
cat single_captures/*.16800 > all_in_one/multi.16800

Windows:
Code:
copy single_captures\*.16800 all_in_one\multi.16800



alternatively, if all files are within the same directory:
Linux:
Code:
cat *.16800 > multi.m16800

Windows:
Code:
copy *.16800 multi.m16800