sqlmap/waf/chinacache.py

22 lines
514 B
Python
Raw Normal View History

2018-10-29 11:51:18 +03:00
#!/usr/bin/env python
"""
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)
retval = code >= 400 and headers.get("Powered-By-ChinaCache") is not None
2018-10-29 11:51:18 +03:00
if retval:
break
return retval