#!/usr/bin/env python12"""3Copyright (c) 2006-2025 sqlmap developers (https://sqlmap.org)4See the file 'LICENSE' for copying permission5"""67from lib.core.datatype import AttribDict8from lib.core.log import LOGGER910# sqlmap paths11paths = AttribDict()1213# object to store original command line options14cmdLineOptions = AttribDict()1516# object to store merged options (command line, configuration file and default options)17mergedOptions = AttribDict()1819# object to share within function and classes command20# line options and settings21conf = AttribDict()2223# object to share within function and classes results24kb = AttribDict()2526# object with each database management system specific queries27queries = {}2829# logger30logger = LOGGER313233