2013-02-14 15:32:17 +04:00
|
|
|
#!/usr/bin/env python
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
"""
|
2016-01-06 02:06:12 +03:00
|
|
|
Copyright (c) 2006-2016 sqlmap developers (http://sqlmap.org/)
|
2010-10-15 03:18:29 +04:00
|
|
|
See the file 'doc/COPYING' for copying permission
|
2008-10-15 19:38:22 +04:00
|
|
|
"""
|
|
|
|
|
2011-07-08 10:02:31 +04:00
|
|
|
from lib.core.datatype import AttribDict
|
2012-07-10 05:54:37 +04:00
|
|
|
from lib.core.log import LOGGER
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
# sqlmap paths
|
2011-07-08 10:02:31 +04:00
|
|
|
paths = AttribDict()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
2011-01-02 13:37:32 +03:00
|
|
|
# object to store original command line options
|
2011-07-08 10:02:31 +04:00
|
|
|
cmdLineOptions = AttribDict()
|
2011-01-02 13:37:32 +03:00
|
|
|
|
2013-04-10 21:33:31 +04:00
|
|
|
# object to store merged options (command line, configuration file and default options)
|
|
|
|
mergedOptions = AttribDict()
|
|
|
|
|
2008-10-15 19:38:22 +04:00
|
|
|
# object to share within function and classes command
|
|
|
|
# line options and settings
|
2011-07-08 10:02:31 +04:00
|
|
|
conf = AttribDict()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
# object to share within function and classes results
|
2011-07-08 10:02:31 +04:00
|
|
|
kb = AttribDict()
|
2008-10-15 19:38:22 +04:00
|
|
|
|
|
|
|
# object with each database management system specific queries
|
|
|
|
queries = {}
|
|
|
|
|
|
|
|
# logger
|
|
|
|
logger = LOGGER
|