01-30-2019, 04:43 PM
(01-29-2019, 03:09 AM)royce Wrote: This Stackexchange thread may be informative - it has some examples:
https://security.stackexchange.com/quest...958#154958
Great tip, and I made some progress but...
hashcat64.exe --potfile-disable -m 0 -o ../hashes/md5test/output.txt ../hashes/md5test/hash.txt -a 3 --hex-charset -1 c3 -2 8489969c9fa4a9b6bc ?a?a?a?1?2 -O [Works as stated]
Moving away from mask in cli to use the mask file resulted in "Custom-charset 1 is undefined"
hashcat64.exe --potfile-disable -m 0 -o ../hashes/md5test/output.txt ../hashes/md5test/hash.txt -a 3 --hex-charset -1 c3 -2 8489969c9fa4a9b6bc masks/utf8.hcmask.6char -O [ Results in: Custom-charset 1 is undefined]
So tried to build the mask file with the -1 & -2 included like this:
c3,84858996a4a5a9b6,?a?a?a?a?a?1?2
c3,84858996a4a5a9b6,?a?a?a?a?1?2?a
hashcat64.exe --potfile-disable -m 0 -o ../hashes/md5test/output.txt ../hashes/md5test/hash.txt -a 3 --hex-charset masks/utf8.hcmask.6charTEST -O [Works, but is this really necessary???]
So my question: is it really necessary to do the last example to make this work or are there other smarter ways to make this happen?