mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
minor update to webseal WAF script, will better recognize now
This commit is contained in:
parent
5d9de51a57
commit
9cb82a7096
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue