MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / _saveConfig

Function _saveConfig

lib/core/option.py:2298–2313  ·  view source on GitHub ↗

Saves the command line options to a sqlmap configuration INI file Format.

()

Source from the content-addressed store, hash-verified

2296 kb.wizardMode = True
2297
2298def _saveConfig():
2299 """
2300 Saves the command line options to a sqlmap configuration INI file
2301 Format.
2302 """
2303
2304 if not conf.saveConfig:
2305 return
2306
2307 debugMsg = "saving command line options to a sqlmap configuration INI file"
2308 logger.debug(debugMsg)
2309
2310 saveConfig(conf, conf.saveConfig)
2311
2312 infoMsg = "saved command line options to the configuration file '%s'" % conf.saveConfig
2313 logger.info(infoMsg)
2314
2315def setVerbosity():
2316 """

Callers 1

initFunction · 0.85

Calls 3

saveConfigFunction · 0.90
debugMethod · 0.80
infoMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…