sqlmap/waf/denyall.py

26 lines
696 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2015-01-06 17:02:16 +03:00
Copyright (c) 2006-2015 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__ = "Deny All Web Application Firewall (DenyAll)"
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:
page, headers, code = get_page(get=vector)
retval = re.search(r"\Asessioncookie=", headers.get(HTTP_HEADER.SET_COOKIE, ""), re.I) is not None
2013-02-26 18:54:50 +04:00
retval |= code == 200 and re.search(r"\ACondition Intercepted", page, re.I) is not None
if retval:
break
return retval