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 d7d5654 commit 0e65043Copy full SHA for 0e65043
2 files changed
lib/controller/action.py
@@ -48,9 +48,6 @@ def action():
48
elif kb.nullConnection:
49
errMsg += ". You can try to rerun without using optimization "
50
errMsg += "switch '%s'" % ("-o" if conf.optimize else "--null-connection")
51
- else:
52
- errMsg += ". Support for this DBMS will be implemented at "
53
- errMsg += "some point"
54
55
raise SqlmapUnsupportedDBMSException(errMsg)
56
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.15"
+VERSION = "1.0.6.16"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
0 commit comments