sqlmap/waf/webappsecure.py

16 lines
342 B
Python
Raw Normal View History

#!/usr/bin/env python
"""
2016-01-06 02:06:12 +03:00
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
__product__ = "webApp.secure (webScurity)"
def detect(get_page):
2016-01-07 23:58:10 +03:00
_, _, code = get_page()
if code == 403:
return False
2016-01-07 23:58:10 +03:00
_, _, code = get_page(get="nx=@@")
return code == 403