2013-02-28 21:54:56 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2016-01-06 02:06:12 +03:00
|
|
|
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
|
2013-02-28 21:54:56 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from lib.core.settings import WAF_ATTACK_VECTORS
|
|
|
|
|
|
|
|
__product__ = "KONA Security Solutions (Akamai Technologies)"
|
|
|
|
|
|
|
|
def detect(get_page):
|
|
|
|
retval = False
|
|
|
|
|
|
|
|
for vector in WAF_ATTACK_VECTORS:
|
2016-01-07 23:58:10 +03:00
|
|
|
page, _, code = get_page(get=vector)
|
2015-11-17 11:39:09 +03:00
|
|
|
retval = code in (400, 501) and re.search(r"Reference #[0-9A-Fa-f.]+", page, re.I) is not None
|
2013-02-28 21:54:56 +04:00
|
|
|
if retval:
|
|
|
|
break
|
|
|
|
|
|
|
|
return retval
|