hashcat Forum
ok if mask is defined on cli but not if in mask.hcmask - 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: ok if mask is defined on cli but not if in mask.hcmask (/thread-11426.html)



ok if mask is defined on cli but not if in mask.hcmask - joe123 - 05-09-2023

Hello

how it comes that if the NTLM-hast and the Mask are defined like the following in the CLI, Hashcat does
find the password,

$ hashcat -m 1000 -a 3 dell-ntlm-hash.txt ?d?d?d?d


but no so if the Hash and Mask are stored in files ?


─$ hashcat -m 1000 dell-ntlm-hash.txt dell-mask.hcmask
hashcat (v6.2.5) starting

Error message:
"The wordlist or mask that you are using is too small"


Thank's in advance for any feedback!

Joe


RE: ok if mask is defined on cli but not if in mask.hcmask - Xanadrel - 05-09-2023

You didn't use -a 3 for the second command, so hashcat is using it as a wordlist instead of a list of masks.


RE: ok if mask is defined on cli but not if in mask.hcmask - joe123 - 05-11-2023

(05-09-2023, 04:57 PM)Xanadrel Wrote: You didn't use -a 3 for the second command, so hashcat is using it as a wordlist instead of a list of masks.

Thank you Xanadrel! With -a 3 it does work perfectSmile

Joe