What am I doing wrong here? - 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: What am I doing wrong here? (/thread-8284.html) |
What am I doing wrong here? - Pilsener - 04-04-2019 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 RE: What am I doing wrong here? - philsmd - 04-04-2019 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. RE: What am I doing wrong here? - Pilsener - 04-04-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 RE: What am I doing wrong here? - philsmd - 04-04-2019 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#hashcat_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 RE: What am I doing wrong here? - Pilsener - 04-04-2019 One thousand thanks, Sir. |