Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e03b2df

Browse files
committed
Fixes #1761
1 parent 252eb97 commit e03b2df

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from lib.core.revision import getRevisionNumber
2121

2222
# sqlmap version and site
23-
VERSION = "1.0.0.20"
23+
VERSION = "1.0.0.21"
2424
REVISION = getRevisionNumber()
2525
STABLE = VERSION.count('.') <= 2
2626
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

sqlmap.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,11 @@ def main():
175175
logger.error(errMsg)
176176
raise SystemExit
177177

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+
178183
elif all(_ in excMsg for _ in ("pymysql", "configparser")):
179184
errMsg = "wrong initialization of pymsql detected (using Python3 dependencies)"
180185
logger.error(errMsg)

0 commit comments

Comments
 (0)