hashcat Forum

Full Version: How to combine-concat charset in Hashcat?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Example:
min password length is 6
c | charset [a-z A-Z 0-9] is equal ( l + u + d )

?c?c?c?c?c?c

Code:
- [ Built-in Charsets ] -

  ? | Charset
===+=========
  l | abcdefghijklmnopqrstuvwxyz [a-z]
  u | ABCDEFGHIJKLMNOPQRSTUVWXYZ [A-Z]
  d | 0123456789                [0-9]
  h | 0123456789abcdef          [0-9a-f]
  H | 0123456789ABCDEF          [0-9A-F]
  s |  !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
  a | ?l?u?d?s
  b | 0x00 - 0xff
just read some lines further, you are looking for custom charsets
Code:
 Options Short / Long          Type           Description           Example

-1, --custom-charset1           CS    User-defined charset ?1      -1 ?l?d?u
-2, --custom-charset2           CS    User-defined charset ?2      -2 ?l?d?s
-3, --custom-charset3           CS    User-defined charset ?3
-4, --custom-charset4           CS    User-defined charset ?4
Wow, thanks.