sqlmap/waf/fortiweb.py

25 lines
598 B
Python
Raw Normal View History

2013-03-18 14:22:30 +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-18 14:22:30 +04:00
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.enums import HTTP_HEADER
2013-03-18 14:22:30 +04:00
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "FortiWeb Web Application Firewall (Fortinet Inc.)"
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
2016-01-07 23:58:10 +03:00
_, headers, _ = get_page(get=vector)
retval = re.search(r"\AFORTIWAFSID=", headers.get(HTTP_HEADER.SET_COOKIE, ""), re.I) is not None
2013-03-18 14:22:30 +04:00
if retval:
break
return retval