sqlmap/waf/cloudbric.py

22 lines
557 B
Python
Raw Normal View History

2019-03-21 16:00:09 +03:00
#!/usr/bin/env python2
2018-06-05 01:05:17 +03:00
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2018-06-05 01:05:17 +03:00
See the file 'LICENSE' for copying permission
"""
from lib.core.settings import WAF_ATTACK_VECTORS
2018-06-05 01:20:37 +03:00
__product__ = "Cloudbric Web Application Firewall (Cloudbric)"
2018-06-05 01:05:17 +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 all(_ in (page or "") for _ in ("Cloudbric", "Malicious Code Detected"))
if retval:
break
2018-06-05 01:05:17 +03:00
return retval