sqlmap/waf/baidu.py

25 lines
622 B
Python
Raw Normal View History

2014-12-14 22:19:23 +03:00
#!/usr/bin/env python
"""
2015-01-06 17:02:16 +03:00
Copyright (c) 2006-2015 sqlmap developers (http://sqlmap.org/)
2014-12-14 22:19:23 +03:00
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.settings import WAF_ATTACK_VECTORS
2014-12-15 12:29:59 +03:00
__product__ = "Yunjiasu Web Application Firewall (Baidu)"
2014-12-14 22:19:23 +03:00
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
page, headers, code = get_page(get=vector)
retval = re.search(r"fhl", headers.get("X-Server", ""), re.I) is not None
retval |= re.search(r"yunjiasu-nginx", headers.get("server"), re.I) is not None
2014-12-14 22:19:23 +03:00
if retval:
break
return retval