There was an error while loading. Please reload this page.
1 parent 971f59a commit ce64d97Copy full SHA for ce64d97
sqlmap.py
@@ -69,6 +69,15 @@ def main():
69
70
try:
71
paths.SQLMAP_ROOT_PATH = modulePath()
72
+
73
+ try:
74
+ os.path.isdir(paths.SQLMAP_ROOT_PATH)
75
+ except UnicodeEncodeError:
76
+ errMsg = "your system does not properly handle non-ASCII paths. "
77
+ errMsg += "Please move the sqlmap's directory to the other location"
78
+ logger.error(errMsg)
79
+ exit()
80
81
setPaths()
82
83
# Store original command line options for possible later restoration
0 commit comments