Custom charset issue
#2
1. maskprocessor doesn't support loading hashcat's charset files ( https://hashcat.net/wiki/mask_attack#has...rset_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


Messages In This Thread
Custom charset issue - by blx - 08-22-2016, 03:12 AM
RE: Custom charset issue - by philsmd - 08-22-2016, 07:58 AM