sqlmap/waf/sucuri.py

25 lines
593 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2016-01-06 02:06:12 +03:00
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import HTTP_HEADER
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "Sucuri WebSite Firewall"
def detect(get_page):
2015-07-12 13:24:06 +03:00
retVal = False
for vector in WAF_ATTACK_VECTORS:
page, headers, code = get_page(get=vector)
2014-08-28 05:23:44 +04:00
retVal = code == 403 and re.search(r"Sucuri/Cloudproxy", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
2015-07-12 13:24:06 +03:00
if retVal:
break
2015-07-12 13:24:06 +03:00
return retVal