From 85163d50d9c335b00a860bcf0a04e25a78d4e5c1 Mon Sep 17 00:00:00 2001 From: Steve Thomas Date: Mon, 6 May 2019 18:11:01 -0500 Subject: [PATCH] Added the rest of the built-in charsets --- maskgen.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/maskgen.py b/maskgen.py index b7e2ff1..45c554b 100755 --- a/maskgen.py +++ b/maskgen.py @@ -51,6 +51,9 @@ class MaskGen: elif char == "d": count *= 10 elif char == "s": count *= 33 elif char == "a": count *= 95 + elif char == "b": count *= 256 + elif char == "h": count *= 16 + elif char == "H": count *= 16 else: print "[!] Error, unknown mask ?%s in a mask %s" % (char,mask) return count