mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
14 lines
330 B
Python
14 lines
330 B
Python
import re
|
|
|
|
|
|
__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")
|
|
)
|
|
for detection in list(detection_schema):
|
|
if detection.search(content) is not None:
|
|
return True
|