Merge .16800 files into a single one
#1
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.
Reply
#2
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
Reply