sqlmap/waf/requestvalidationmode.py

23 lines
642 B
Python
Raw Normal View History

2014-11-28 16:03:53 +03:00
#!/usr/bin/env python
"""
2015-01-06 17:02:16 +03:00
Copyright (c) 2006-2015 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, headers, code = get_page(get=vector)
2014-11-28 16:10:31 +03:00
retval = "ASP.NET has detected data in the request that is potentially dangerous" in page
retval |= "Request Validation has detected a potentially dangerous client input value" in page
2014-11-28 16:03:53 +03:00
if retval:
break
return retval