Custom charset issue - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: Custom charset issue (/thread-5783.html) |
Custom charset issue - blx - 08-22-2016 trying to use maskprocessor with a custom charset, not working...OS Windows 7 64 Tried Code: mp64.exe -1 Custom1.hccr ?1?1?1?1 -o test.txt Code: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!#$%&()*+,./:;<=>?@[]^_`{|}~" its not the FULL ?s, but almost...however I am trying to test something.. I even tried putting it in line -1 with single line quotes... the HCCR is the best i've gotten, but it only does some of them..starts with lowercase b and ends with lowercase r. thanks RE: Custom charset issue - philsmd - 08-22-2016 1. maskprocessor doesn't support loading hashcat's charset files ( https://hashcat.net/wiki/mask_attack#hashcat_charset_files ) 2. the file extension would be .hcchr and not .hccr (but this, even if it would be supported, would of course not be strictly checked -> similar to hashcat/hashcat-legacy) 3. if you use a long list of characters you need to both check if you need to escape it for/from your shell and if there are special characters that need to be escaped because otherwise they would be interpreted by hashcat (like the ?[something] in your specific case) 4. something like this works perfectly on linux (windows may need different shell escaping): Code: ./mp64.bin -1 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!#$%&()*+,./:;<=>??@[]^_`{|}~"' ?1 |