sqlmap/waf/binarysec.py

26 lines
682 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2014-01-13 21:24:49 +04:00
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import HTTP_HEADER
2013-02-26 18:54:50 +04:00
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "BinarySEC Web Application Firewall (BinarySEC)"
def detect(get_page):
2013-02-26 18:54:50 +04:00
retval = False
for vector in WAF_ATTACK_VECTORS:
page, headers, code = get_page(get=vector)
2013-02-26 18:30:11 +04:00
retval = any(headers.get(_) for _ in ("x-binarysec-via", "x-binarysec-nocache"))
retval |= re.search(r"BinarySec", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
2013-02-26 18:54:50 +04:00
if retval:
break
2013-02-26 18:30:11 +04:00
return retval