2014-11-28 16:03:53 +03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2017-01-02 16:19:18 +03:00
|
|
|
Copyright (c) 2006-2017 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:
|
2016-05-30 15:26:55 +03:00
|
|
|
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 "")
|
2016-05-30 15:26:55 +03:00
|
|
|
retval |= code == 500 and "HttpRequestValidationException" in page
|
2014-11-28 16:03:53 +03:00
|
|
|
if retval:
|
|
|
|
break
|
|
|
|
|
|
|
|
return retval
|