sqlmap/waf/paloalto.py

24 lines
564 B
Python
Raw Normal View History

2013-07-18 18:17:28 +04:00
#!/usr/bin/env python
"""
2017-01-02 16:19:18 +03:00
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
2013-07-18 18:17:28 +04:00
See the file 'doc/COPYING' for copying permission
"""
import re
from lib.core.settings import WAF_ATTACK_VECTORS
__product__ = "Palo Alto Firewall (Palo Alto Networks)"
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 = re.search(r"Access[^<]+has been blocked in accordance with company policy", page or "", re.I) is not None
2013-07-18 18:17:28 +04:00
if retval:
break
return retval