Saves the command line options to a sqlmap configuration INI file Format.
()
| 2296 | kb.wizardMode = True |
| 2297 | |
| 2298 | def _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 | |
| 2315 | def setVerbosity(): |
| 2316 | """ |
no test coverage detected
searching dependent graphs…