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 46736ca commit 2e95fdbCopy full SHA for 2e95fdb
2 files changed
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from lib.core.revision import getRevisionNumber
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.0.6.33"
+VERSION = "1.0.6.36"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
sqlmap.py
@@ -199,6 +199,11 @@ def main():
199
logger.error(errMsg)
200
raise SystemExit
201
202
+ elif "Read-only file system" in excMsg:
203
+ errMsg = "output device is mounted as read-only"
204
+ logger.error(errMsg)
205
+ raise SystemExit
206
+
207
elif "_mkstemp_inner" in excMsg:
208
errMsg = "there has been a problem while accessing temporary files"
209
0 commit comments