forked from p15670423/monkey
Common: Add ntlm_hash_validator
This commit is contained in:
parent
031fce9fd8
commit
68e52eb512
|
@ -0,0 +1,6 @@
|
|||
import re
|
||||
|
||||
from marshmallow import validate
|
||||
|
||||
_ntlm_hash_regex = re.compile(r"^[a-fA-F0-9]{32}$")
|
||||
ntlm_hash_validator = validate.Regexp(regex=_ntlm_hash_regex)
|
Loading…
Reference in New Issue