mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
16 lines
342 B
Python
16 lines
342 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
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):
|
|
_, _, code = get_page()
|
|
if code == 403:
|
|
return False
|
|
_, _, code = get_page(get="nx=@@")
|
|
return code == 403
|