hashcat Forum

Full Version: What am I doing wrong here?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have managed to run Hashcat with a MASKS file.
But the output shows something strange at the "Guess charset" line.
I wanted to use uppercase and digits, but there are some chars missing in what's listed.

Here's a screenshot of the output.

http://i64.tinypic.com/ip7alx.jpg
well, you also need to show us your command line and mask file. without that we can't really understand what you are doing over there.
Command line:
hashcat64.exe -a 3 --session=2019-04-04 -m 2500 -w 3 --force -p : -O --hwmon-disable -o "C:\Users\Johan\Desktop\outputfile.txt" --outfile-format=2 -1 ?d?u "C:\Hitron-hashfile.hccapx" test1.masks

First lines of mask file:
?d?d?d?d?d?d?d?d?d?u?u?u
?d?d?d?d?d?d?d?d?l?u?u?u
?d?d?d?d?d?d?d?d?u?d?u?u
?d?d?d?d?d?d?d?d?u?l?u?u
?d?d?d?d?d?d?d?d?u?u?d?u
?d?d?d?d?d?d?d?d?u?u?l?u
?d?d?d?d?d?d?d?d?u?u?u?d
?d?d?d?d?d?d?d?d?u?u?u?l
?d?d?d?d?d?d?d?d?u?u?u?u
?d?d?d?d?d?d?d?l?d?u?u?u
?d?d?d?d?d?d?d?l?l?u?u?u
?d?d?d?d?d?d?d?l?u?d?u?u
?d?d?d?d?d?d?d?l?u?l?u?u
?d?d?d?d?d?d?d?l?u?u?d?u
you need to define the custom charset within the mask file, see https://hashcat.net/faq#what_is_a_hashcat_mask_file and https://hashcat.net/wiki/?id=mask_attack...mask_files

therefore the command need to be:

Code:
hashcat64.exe -a 3 --session 2019-04-04 --hwmon-disable -o "C:\Users\Johan\Desktop\outputfile.txt" --outfile-format 2 "C:\Hitron-hashfile.hccapx" test1.masks

and the mask file must contain the definition of the custom charsets and the mask that are using the charset, one line for instance could look like this:
Code:
?d?u,?1?1?1?1?d?d?d?d
One thousand thanks, Sir.