From d3959e926e6fae3a895ffb7edb560c467e8b01b7 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 29 Mar 2019 16:23:39 +0100 Subject: [PATCH] Trivial update --- lib/core/settings.py | 2 +- plugins/dbms/sqlite/enumeration.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index a3ea56719..0d0b2afd1 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -17,7 +17,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME from lib.core.enums import OS # sqlmap version (...) -VERSION = "1.3.3.79" +VERSION = "1.3.3.80" 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/dbms/sqlite/enumeration.py b/plugins/dbms/sqlite/enumeration.py index 4330bc91a..b0b6efe80 100644 --- a/plugins/dbms/sqlite/enumeration.py +++ b/plugins/dbms/sqlite/enumeration.py @@ -22,6 +22,8 @@ class Enumeration(GenericEnumeration): warnMsg = "on SQLite the current user has all privileges" logger.warn(warnMsg) + return True + def getUsers(self): warnMsg = "on SQLite it is not possible to enumerate the users" logger.warn(warnMsg)