How to divide Maskprocessor results in to multiple 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: How to divide Maskprocessor results in to multiple files (/thread-10458.html) |
How to divide Maskprocessor results in to multiple files - balonmd - 11-15-2021 Hi everyone. I am pretty new to the cracking world. I understand how hashcat and maskrpocessor works. Right now I am struggling with 11-12 char long passwords. I was wondering is there is any way to see a mask that will generate password files for every 10milion passwords, or smth like this. Or maybe there is a way to take password candidates for hashcat while maskprocessor is generating them, then remove all processed candidates RE: How to divide Maskprocessor results in to multiple files - ZerBea - 11-15-2021 split will do it: Code: $ mp64 ?l?l?l?l?l?l?l?l?l?l?l | split -l 10000000 RE: How to divide Maskprocessor results in to multiple files - balonmd - 11-15-2021 (11-15-2021, 04:58 PM)ZerBea Wrote: split will do it: How to do that on windows power shell? RE: How to divide Maskprocessor results in to multiple files - ZerBea - 11-15-2021 https://stackoverflow.com/questions/1001776/how-can-i-split-a-text-file-using-powershell |