f0cker / crackq

CrackQ: A Python Hashcat cracking queue system
MIT License
922 stars 101 forks source link

Char masks for brute force #9

Closed jllang763 closed 4 years ago

jllang763 commented 4 years ago

Looking at the help the following are char mask that can be used ?1 = ?l?d, ?2 = ?l?d?u, ?3 = ?l?d?s but I am looking for a mask for ?l?u?d?s Is there a way to define other masks?

f0cker commented 4 years ago

Custom masks is something I'm going to add in future releases, but for now you can use ?a for the above requirement. If you need to a custom mask id urgently though, its here: https://github.com/f0cker/crackq/blob/master/crackq/run_hashcat.py#L142

so you should be able to just add: hc.custom_charset_4 = '?l?d?uxxx'

jllang763 commented 4 years ago

Thank you.