mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Fixes #2253
This commit is contained in:
parent
f4e36fc049
commit
10097dd124
4 changed files with 19 additions and 14 deletions
2
lib/core/option.py
Normal file → Executable file
2
lib/core/option.py
Normal file → Executable file
|
|
@ -2222,7 +2222,7 @@ def _mergeOptions(inputOptions, overrideOptions):
|
|||
|
||||
if inputOptions.pickledOptions:
|
||||
try:
|
||||
inputOptions = base64unpickle(inputOptions.pickledOptions)
|
||||
inputOptions = base64unpickle(inputOptions.pickledOptions, unsafe=True)
|
||||
if type(inputOptions) == dict:
|
||||
inputOptions = AttribDict(inputOptions)
|
||||
_normalizeOptions(inputOptions)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue