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

Skip to content

Commit d3959e9

Browse files
committed
Trivial update
1 parent 23ff1ca commit d3959e9

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from lib.core.enums import OS
1818

1919
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20-
VERSION = "1.3.3.79"
20+
VERSION = "1.3.3.80"
2121
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2222
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2323
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ def isDba(self):
2222
warnMsg = "on SQLite the current user has all privileges"
2323
logger.warn(warnMsg)
2424

25+
return True
26+
2527
def getUsers(self):
2628
warnMsg = "on SQLite it is not possible to enumerate the users"
2729
logger.warn(warnMsg)

0 commit comments

Comments
 (0)