minor update to webseal WAF script, will better recognize now

This commit is contained in:
ekultek 2017-11-13 20:43:41 -06:00
parent 5d9de51a57
commit 9cb82a7096

View file

@ -1,13 +1,13 @@
import re
__item__ = "IBM Security Access Manager WebSEAL"
__item__ = "IBM Security Access Manager (WebSEAL)"
def detect(content, **kwargs):
content = str(content)
detection_schema = (
re.compile(r"\bWebSEAL\b"), re.compile(r"\bIBM\b")
re.compile(r"\bWebSEAL\b", re.I), re.compile(r"\bIBM\b", re.I)
)
for detection in list(detection_schema):
if detection.search(content) is not None: