sqlmap/waf/distil.py

23 lines
657 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2018-08-05 15:19:27 +03:00
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2018-08-05 15:19:27 +03:00
See the file 'LICENSE' for copying permission
"""
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "Distil Web Application Firewall Security (Distil Networks)"
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
2019-01-10 15:23:34 +03:00
page, headers, _ = get_page(get=vector)
retval |= headers.get("x-distil-cs") is not None
2019-01-10 15:23:34 +03:00
retval |= any(_ in (page or "") for _ in ("distilCaptchaForm", "distilCallbackGuard", "cdn.distilnetworks.com/images/anomaly-detected.png"))
2018-08-05 15:19:27 +03:00
if retval:
break
return retval