Added the rest of the built-in charsets

This commit is contained in:
Steve Thomas 2019-05-06 18:11:01 -05:00 committed by GitHub
parent 085d30ae5d
commit 85163d50d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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