Files
sqlmap/waf/binarysec.py
2013-02-26 15:30:11 +01:00

20 lines
535 B
Python

#!/usr/bin/env python
"""
Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import HTTPHEADER
__product__ = "BinarySEC Web Application Firewall (BinarySEC)"
def detect(get_page):
page, headers, code = get_page()
retval = re.search(r"BinarySec", headers.get(HTTPHEADER.SERVER, ""), re.I) is not None
if not retval:
retval = any(headers.get(_) for _ in ("x-binarysec-via", "x-binarysec-nocache"))
return retval