From aa7c54837685eb5ae870c972ec23c7cc03903fb0 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 15 Jul 2020 14:49:16 +0200 Subject: [PATCH] Fixes #4263 --- lib/core/settings.py | 2 +- plugins/generic/search.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index c9ecc6b4d..6f1738db4 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.4.7.5" +VERSION = "1.4.7.6" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) diff --git a/plugins/generic/search.py b/plugins/generic/search.py index 080d47476..6e4a0e2a4 100644 --- a/plugins/generic/search.py +++ b/plugins/generic/search.py @@ -450,9 +450,6 @@ class Search(object): for tbl in conf.tbl.split(','): values.append([safeSQLIdentificatorNaming(db), safeSQLIdentificatorNaming(tbl, True)]) - if Backend.getIdentifiedDbms() in (DBMS.FIREBIRD,): - values = [(conf.db, value) for value in arrayizeValue(values)] - for db, tbl in filterPairValues(values): db = safeSQLIdentificatorNaming(db) tbls = tbl.split(',') if not isNoneValue(tbl) else []