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)
|
|
|
|
retval = code >= 400 and all(_ in (page or "") for _ in ("Cloudbric", "Malicious Code Detected"))
|
|
|
|
|
|
|
|
return retval
|