2019-03-21 16:00:09 +03:00
|
|
|
#!/usr/bin/env python2
|
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)
|
2019-04-16 14:37:02 +03:00
|
|
|
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
|