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 7fb9db4 commit 91372bfCopy full SHA for 91372bf
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.27"
+VERSION = "1.0.6.28"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
plugins/dbms/firebird/fingerprint.py
@@ -106,8 +106,6 @@ def checkDbms(self):
106
if not conf.extensiveFp and (Backend.isDbmsWithin(FIREBIRD_ALIASES) \
107
or (conf.dbms or "").lower() in FIREBIRD_ALIASES) and Backend.getVersion() and \
108
Backend.getVersion() != UNKNOWN_DBMS_VERSION:
109
- Backend.setVersion(v)
110
-
111
setDbms("%s %s" % (DBMS.FIREBIRD, Backend.getVersion()))
112
113
self.getBanner()
0 commit comments