sqlmap/waf/datapower.py

24 lines
536 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
2013-02-26 18:54:50 +04:00
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "IBM WebSphere DataPower (IBM)"
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:54:50 +04:00
retval = re.search(r"\A(OK|FAIL)", headers.get("X-Backside-Transport", ""), re.I) is not None
if retval:
break
return retval