Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/lib/core/data.py
2989 views
1
#!/usr/bin/env python
2
3
"""
4
Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)
5
See the file 'LICENSE' for copying permission
6
"""
7
8
from lib.core.datatype import AttribDict
9
from lib.core.log import LOGGER
10
11
# sqlmap paths
12
paths = AttribDict()
13
14
# object to store original command line options
15
cmdLineOptions = AttribDict()
16
17
# object to store merged options (command line, configuration file and default options)
18
mergedOptions = AttribDict()
19
20
# object to share within function and classes command
21
# line options and settings
22
conf = AttribDict()
23
24
# object to share within function and classes results
25
kb = AttribDict()
26
27
# object with each database management system specific queries
28
queries = {}
29
30
# logger
31
logger = LOGGER
32
33