2015-01-06 16:11:53 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2016-01-06 02:06:12 +03:00
|
|
|
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
|
2015-01-06 16:11:53 +03:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.settings import WAF_ATTACK_VECTORS
|
|
|
|
|
|
|
|
__product__ = "SEnginx (Neusoft Corporation)"
|
|
|
|
|
|
|
|
def detect(get_page):
|
|
|
|
retval = False
|
|
|
|
|
|
|
|
for vector in WAF_ATTACK_VECTORS:
|
2016-01-07 23:58:10 +03:00
|
|
|
page, _, _ = get_page(get=vector)
|
2016-05-27 14:58:18 +03:00
|
|
|
retval = "SENGINX-ROBOT-MITIGATION" in (page or "")
|
2015-01-06 16:11:53 +03:00
|
|
|
if retval:
|
|
|
|
break
|
|
|
|
|
|
|
|
return retval
|