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

Skip to content

Commit 2e95fdb

Browse files
committed
Fixes #1947
1 parent 46736ca commit 2e95fdb

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
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.6.33"
22+
VERSION = "1.0.6.36"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
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
@@ -199,6 +199,11 @@ def main():
199199
logger.error(errMsg)
200200
raise SystemExit
201201

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+
202207
elif "_mkstemp_inner" in excMsg:
203208
errMsg = "there has been a problem while accessing temporary files"
204209
logger.error(errMsg)

0 commit comments

Comments
 (0)