sqlmap/waf/dotdefender.py

23 lines
762 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
"""
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "dotDefender (Applicure Technologies)"
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
2016-05-27 03:24:59 +03:00
page, headers, _ = get_page(get=vector)
retval |= headers.get("X-dotDefender-denied", "") == "1"
2018-08-29 13:21:33 +03:00
retval |= any(_ in (page or "") for _ in ("dotDefender Blocked Your Request", '<meta name="description" content="Applicure is the leading provider of web application security', "Please contact the site administrator, and provide the following Reference ID:"))
2016-05-27 03:24:59 +03:00
if retval:
break
return retval