There was an error while loading. Please reload this page.
1 parent 9652e41 commit 05b446bCopy full SHA for 05b446b
1 file changed
lib/core/target.py
@@ -17,6 +17,7 @@
17
from lib.core.common import getUnicode
18
from lib.core.common import hashDBRetrieve
19
from lib.core.common import intersect
20
+from lib.core.common import normalizeUnicode
21
from lib.core.common import paramToDict
22
from lib.core.common import readInput
23
from lib.core.common import resetCookieJar
@@ -573,7 +574,7 @@ def _createTargetDirs():
573
574
575
paths.SQLMAP_OUTPUT_PATH = tempDir
576
- conf.outputPath = os.path.join(getUnicode(paths.SQLMAP_OUTPUT_PATH), getUnicode(conf.hostname))
577
+ conf.outputPath = os.path.join(getUnicode(paths.SQLMAP_OUTPUT_PATH), normalizeUnicode(getUnicode(conf.hostname)))
578
579
if not os.path.isdir(conf.outputPath):
580
try:
0 commit comments