Mask downloading possibility !
#1
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 ?
Reply
#2
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.
Reply
#3
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.
Reply
#4
Code:
hashcat -a 3 --stdout ?a?a?a?a?a?a?a?a > textfile.txt

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