sqlmap/waf/watchguard.py

26 lines
679 B
Python
Raw Normal View History

2019-05-08 13:47:52 +03:00
#!/usr/bin/env python
2017-11-26 14:06:23 +03:00
"""
2019-01-05 23:38:52 +03:00
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
2017-11-26 14:06:23 +03:00
See the file 'LICENSE' for copying permission
"""
import re
from lib.core.enums import HTTP_HEADER
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "WatchGuard (WatchGuard Technologies)"
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
2019-01-07 04:58:47 +03:00
page, headers, code = get_page(get=vector)
2019-05-08 00:00:15 +03:00
retval |= (code or 0) >= 400 and re.search(r"\AWatchGuard", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
2019-01-07 04:58:47 +03:00
retval |= "Request denied by WatchGuard Firewall" in (page or "")
2017-11-26 14:06:23 +03:00
if retval:
break
return retval