sqlmap/waf/airlock.py

25 lines
571 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2017-01-02 16:19:18 +03:00
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
2017-10-11 15:50:46 +03:00
See the file 'LICENSE' for copying permission
"""
import re
from lib.core.enums import HTTP_HEADER
2013-02-26 18:54:50 +04:00
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "Airlock (Phion/Ergon)"
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)
retval = re.search(r"\AAL[_-]?(SESS|LB)=", headers.get(HTTP_HEADER.SET_COOKIE, ""), re.I) is not None
2013-02-26 18:54:50 +04:00
if retval:
break
return retval