From 9cb82a70968d4bd42a22ce443dfd7f1b907d40a3 Mon Sep 17 00:00:00 2001 From: ekultek Date: Mon, 13 Nov 2017 20:43:41 -0600 Subject: [PATCH] minor update to webseal WAF script, will better recognize now --- lib/firewall/webseal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/firewall/webseal.py b/lib/firewall/webseal.py index 20afee4..7af7a74 100644 --- a/lib/firewall/webseal.py +++ b/lib/firewall/webseal.py @@ -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: