sqlmap/waf/bigip.py

27 lines
777 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__ = "BIG-IP Application Security Manager (F5 Networks)"
def detect(get_page):
2013-02-26 18:54:50 +04:00
retval = False
2013-02-26 18:54:50 +04:00
for vector in WAF_ATTACK_VECTORS:
2016-01-07 23:58:10 +03:00
_, headers, _ = get_page(get=vector)
2013-02-26 18:54:50 +04:00
retval = headers.get("X-Cnection", "").lower() == "close"
retval |= re.search(r"\ATS[a-zA-Z0-9]{3,6}=", headers.get(HTTP_HEADER.SET_COOKIE, ""), re.I) is not None
retval |= re.search(r"BigIP|BIGipServer", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
2013-02-26 18:54:50 +04:00
if retval:
break
return retval