2008-10-15 19:38:22 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
2008-10-15 19:56:32 +04:00
|
|
|
$Id$
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2010-10-14 18:41:14 +04:00
|
|
|
Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
|
|
|
from lib.core.datatype import advancedDict
|
|
|
|
from lib.core.settings import LOGGER
|
|
|
|
|
|
|
|
# sqlmap paths
|
|
|
|
paths = advancedDict()
|
|
|
|
|
|
|
|
# object to share within function and classes command
|
|
|
|
# line options and settings
|
|
|
|
conf = advancedDict()
|
|
|
|
|
|
|
|
# object to share within function and classes results
|
|
|
|
kb = advancedDict()
|
|
|
|
|
|
|
|
# object with each database management system specific queries
|
|
|
|
queries = {}
|
|
|
|
|
|
|
|
# logger
|
|
|
|
logger = LOGGER
|