hashcat Forum

Full Version: Mask downloading possibility !
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 ?
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.
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.
Code:
hashcat -a 3 --stdout ?a?a?a?a?a?a?a?a > textfile.txt

Hope you have a big enough storage drive.
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.