2013-03-20 13:32:15 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2016-01-06 02:06:12 +03:00
|
|
|
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
|
2013-03-20 13:32:15 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.settings import WAF_ATTACK_VECTORS
|
|
|
|
|
|
|
|
__product__ = "KS-WAF (Knownsec)"
|
|
|
|
|
|
|
|
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)
|
2013-03-20 13:32:15 +04:00
|
|
|
retval = re.search(r"url\('/ks-waf-error\.png'\)", page, re.I) is not None
|
|
|
|
if retval:
|
|
|
|
break
|
|
|
|
|
|
|
|
return retval
|