mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-19 14:06:30 +00:00
Patch for an Issue #1106
This commit is contained in:
parent
06ff8b3a16
commit
f9a9ededb1
2 changed files with 4 additions and 2 deletions
|
|
@ -1445,7 +1445,7 @@ def _createTemporaryDirectory():
|
|||
|
||||
if not os.path.isdir(tempfile.gettempdir()):
|
||||
os.makedirs(tempfile.gettempdir())
|
||||
tempfile.tempdir = tempfile.mkdtemp(prefix="sqlmap", suffix=str(os.getpid()))
|
||||
kb.tempDir = tempfile.tempdir = tempfile.mkdtemp(prefix="sqlmap", suffix=str(os.getpid()))
|
||||
if not os.path.isdir(tempfile.tempdir):
|
||||
os.makedirs(tempfile.tempdir)
|
||||
|
||||
|
|
@ -1772,6 +1772,7 @@ def _setKnowledgeBaseAttributes(flushAll=True):
|
|||
kb.storeHashesChoice = None
|
||||
kb.suppressResumeInfo = False
|
||||
kb.technique = None
|
||||
kb.tempDir = None
|
||||
kb.testMode = False
|
||||
kb.testQueryCount = 0
|
||||
kb.testType = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue