mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
26 lines
842 B
Python
26 lines
842 B
Python
import re
|
|
|
|
from lib.core.common import HTTP_HEADER
|
|
|
|
|
|
__item__ = "CloudFlare Web Application Firewall (CloudFlare)"
|
|
|
|
|
|
def detect(content, **kwargs):
|
|
headers = kwargs.get("headers", None)
|
|
content = str(content)
|
|
detection_schemas = (
|
|
re.compile(r"CloudFlare Ray ID:|var CloudFlare=", re.I),
|
|
re.compile(r"cloudflare-nginx", re.I),
|
|
re.compile(r"\A__cfduid=", re.I),
|
|
re.compile(r"CF_RAY", re.I)
|
|
)
|
|
for detection in detection_schemas:
|
|
if detection.search(content) is not None:
|
|
return True
|
|
elif detection.search(headers.get(HTTP_HEADER.SERVER, "")) is not None:
|
|
return True
|
|
elif detection.search(headers.get(HTTP_HEADER.COOKIE, "")) is not None:
|
|
return True
|
|
elif detection.search(str(headers)) is not None:
|
|
return True
|