mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
16 lines
366 B
Python
16 lines
366 B
Python
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2006-2017 sqlmap developers (http://sqlmap.org/)
|
|
See the file 'doc/COPYING' for copying permission
|
|
"""
|
|
|
|
__product__ = "Proventia Web Application Security (IBM)"
|
|
|
|
def detect(get_page):
|
|
page, _, _ = get_page()
|
|
if page is None:
|
|
return False
|
|
page, _, _ = get_page(url="/Admin_Files/")
|
|
return page is None
|