2019-03-21 16:00:09 +03:00
|
|
|
#!/usr/bin/env python2
|
2013-02-21 17:33:12 +04:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2013-02-21 17:33:12 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
__product__ = "Proventia Web Application Security (IBM)"
|
|
|
|
|
|
|
|
def detect(get_page):
|
2016-01-07 23:58:10 +03:00
|
|
|
page, _, _ = get_page()
|
2013-02-21 17:33:12 +04:00
|
|
|
if page is None:
|
|
|
|
return False
|
2016-01-07 23:58:10 +03:00
|
|
|
page, _, _ = get_page(url="/Admin_Files/")
|
2013-02-21 17:33:12 +04:00
|
|
|
return page is None
|