Zeus-Scanner/lib/firewall/akamai.py

21 lines
730 B
Python

import re
from lib.core.common import HTTP_HEADER
__item__ = "AkamaiGHost Website Protection (Akamai Global Host)"
def detect(content, **kwargs):
headers = kwargs.get("headers", None)
content = str(content)
detection_schema = (
re.compile(r"you.don.t.have.permission.to.access", re.I),
re.compile(r"<.+>access.denied<.+.>", re.I),
)
for detection in detection_schema:
if detection.search(content) is not None:
if re.compile(r"\bakamaighost", re.I).search(headers.get(HTTP_HEADER.SERVER, "")) is not None:
return True
if re.compile(r"\bak.bmsc.", re.I).search(headers.get(HTTP_HEADER.SET_COOKIE, "")) is not None:
return True