sqlmap/waf/requestvalidationmode.py

24 lines
727 B
Python
Raw Normal View History

2014-11-28 16:03:53 +03:00
#!/usr/bin/env python
"""
2016-01-06 02:06:12 +03:00
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
2014-11-28 16:03:53 +03:00
See the file 'doc/COPYING' for copying permission
"""
2014-11-28 16:10:31 +03:00
from lib.core.settings import WAF_ATTACK_VECTORS
2014-11-28 16:03:53 +03:00
__product__ = "ASP.NET RequestValidationMode (Microsoft)"
def detect(get_page):
retval = False
for vector in WAF_ATTACK_VECTORS:
page, _, code = get_page(get=vector)
2016-05-27 14:58:18 +03:00
retval = "ASP.NET has detected data in the request that is potentially dangerous" in (page or "")
retval |= "Request Validation has detected a potentially dangerous client input value" in (page or "")
retval |= code == 500 and "HttpRequestValidationException" in page
2014-11-28 16:03:53 +03:00
if retval:
break
return retval