Created
August 11, 2026 12:35
-
-
Save gitgotgitgotit/2fe9ab76e1e255dba992a0ffb892433a to your computer and use it in GitHub Desktop.
nano hashcat masks syntax hightlight
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax "hashcat-mask" "\.(hc)?mask$|\.mask$" | |
| # ?l — lowercase | |
| color brightgreen "\?l" | |
| # ?u — uppercase | |
| color brightyellow "\?u" | |
| # ?d — digits | |
| color brightcyan "\?d" | |
| # ?h — lowercase hexadecimal | |
| color brightmagenta "\?h" | |
| # ?H — uppercase hexadecimal | |
| color brightred "\?H" | |
| # ?s — special characters | |
| color brightblue "\?s" | |
| # ?a — all printable characters | |
| color brightwhite "\?a" | |
| # ?b — full byte range | |
| color brightblack "\?b" | |
| # Custom charset definitions / references | |
| color cyan "\?[1-4]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment