2013-02-21 17:33:12 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2016-01-06 02:06:12 +03:00
|
|
|
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
|
2013-02-21 17:33:12 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
2013-03-20 14:10:24 +04:00
|
|
|
from lib.core.enums import HTTP_HEADER
|
2013-02-26 18:54:50 +04:00
|
|
|
from lib.core.settings import WAF_ATTACK_VECTORS
|
2013-02-21 17:33:12 +04:00
|
|
|
|
|
|
|
__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:
|
2016-01-07 23:58:10 +03:00
|
|
|
_, headers, _ = get_page(get=vector)
|
2013-02-26 18:30:11 +04:00
|
|
|
retval = any(headers.get(_) for _ in ("x-binarysec-via", "x-binarysec-nocache"))
|
2013-03-20 14:10:24 +04:00
|
|
|
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
|