Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 252eb97 commit e03b2dfCopy full SHA for e03b2df
2 files changed
lib/core/settings.py
@@ -20,7 +20,7 @@
20
from lib.core.revision import getRevisionNumber
21
22
# sqlmap version and site
23
-VERSION = "1.0.0.20"
+VERSION = "1.0.0.21"
24
REVISION = getRevisionNumber()
25
STABLE = VERSION.count('.') <= 2
26
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
sqlmap.py
@@ -175,6 +175,11 @@ def main():
175
logger.error(errMsg)
176
raise SystemExit
177
178
+ elif "_mkstemp_inner" in excMsg:
179
+ errMsg = "there has been a problem while accessing temporary files"
180
+ logger.error(errMsg)
181
+ raise SystemExit
182
+
183
elif all(_ in excMsg for _ in ("pymysql", "configparser")):
184
errMsg = "wrong initialization of pymsql detected (using Python3 dependencies)"
185
0 commit comments