mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Allow user to force temporary folder with --tmp-path even if it has been saved one in the session file
This commit is contained in:
parent
fbe5ba5394
commit
a313df4d37
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ def resumeConfKb(expression, url, value):
|
|||
else:
|
||||
conf.os = os
|
||||
|
||||
elif expression == "Remote temp path" and url == conf.url:
|
||||
elif expression == "Remote temp path" and url == conf.url and conf.tmpPath is None:
|
||||
conf.tmpPath = unSafeFormatString(value[:-1])
|
||||
|
||||
logMsg = "resuming remote absolute path of temporary "
|
||||
|
|
|
|||
Loading…
Reference in a new issue