hashcat Forum
Mask downloading possibility ! - 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: Mask downloading possibility ! (/thread-11267.html)



Mask downloading possibility ! - RobbieRich - 01-24-2023

Is there a possibility to make hashcat make a file from a certain mask , like ?a?a?a?a?a and that it saves it into a file ?


RE: Mask downloading possibility ! - b8vr - 01-24-2023

Yes, just use --stdout and pipe the result into a file, or maybe use -o outputfile, but I don't know if that works with --stdout.


RE: Mask downloading possibility ! - RobbieRich - 01-24-2023

Thanks ! can you give an exanple of the cmd . please ? with mask e.g. ?a?a?a?a?a?a?a?a , greetings !



(01-24-2023, 04:20 PM)b8vr Wrote: Yes, just use --stdout and pipe the result into a file, or maybe use -o outputfile, but I don't know if that works with --stdout.



RE: Mask downloading possibility ! - slyexe - 01-25-2023

Code:
hashcat -a 3 --stdout ?a?a?a?a?a?a?a?a > textfile.txt

Hope you have a big enough storage drive.


RE: Mask downloading possibility ! - RobbieRich - 01-25-2023

Hope so too ! Thanks A Million !



(01-25-2023, 12:05 AM)slyexe Wrote:
Code:
hashcat -a 3 --stdout ?a?a?a?a?a?a?a?a > textfile.txt

Hope you have a big enough storage drive.