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 23ff1ca commit d3959e9Copy full SHA for d3959e9
2 files changed
lib/core/settings.py
@@ -17,7 +17,7 @@
17
from lib.core.enums import OS
18
19
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20
-VERSION = "1.3.3.79"
+VERSION = "1.3.3.80"
21
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
22
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
23
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
plugins/dbms/sqlite/enumeration.py
@@ -22,6 +22,8 @@ def isDba(self):
warnMsg = "on SQLite the current user has all privileges"
logger.warn(warnMsg)
24
25
+ return True
26
+
27
def getUsers(self):
28
warnMsg = "on SQLite it is not possible to enumerate the users"
29
0 commit comments