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

Skip to content

Commit 91372bf

Browse files
committed
Fixes #1932
1 parent 7fb9db4 commit 91372bf

2 files changed

Lines changed: 1 addition & 3 deletions

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.27"
22+
VERSION = "1.0.6.28"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

plugins/dbms/firebird/fingerprint.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ def checkDbms(self):
106106
if not conf.extensiveFp and (Backend.isDbmsWithin(FIREBIRD_ALIASES) \
107107
or (conf.dbms or "").lower() in FIREBIRD_ALIASES) and Backend.getVersion() and \
108108
Backend.getVersion() != UNKNOWN_DBMS_VERSION:
109-
Backend.setVersion(v)
110-
111109
setDbms("%s %s" % (DBMS.FIREBIRD, Backend.getVersion()))
112110

113111
self.getBanner()

0 commit comments

Comments
 (0)