Posts: 47
Threads: 27
Joined: Apr 2019
04-04-2019, 07:28 PM
(This post was last modified: 04-04-2019, 07:31 PM by Pilsener.)
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
Posts: 2,267
Threads: 16
Joined: Feb 2013
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.
Posts: 47
Threads: 27
Joined: Apr 2019
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
Posts: 2,267
Threads: 16
Joined: Feb 2013
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
Posts: 47
Threads: 27
Joined: Apr 2019
One thousand thanks, Sir.