sqlmap/waf/chinacache.py

23 lines
523 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2018-10-29 11:51:18 +03:00
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2018-10-29 11:51:18 +03:00
See the file 'doc/COPYING' for copying permission
"""
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "ChinaCache (ChinaCache Networks)"
2018-10-29 11:51:18 +03:00
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
page, headers, code = get_page(get=vector)
2019-05-08 00:00:15 +03:00
retval |= (code or 0) >= 400 and headers.get("Powered-By-ChinaCache") is not None
2018-10-29 11:51:18 +03:00
if retval:
break
2019-04-19 14:54:48 +03:00
return retval