From 9c503873ad8458b3d089875c9a9d9df48df7d135 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 27 May 2020 15:44:44 +0200 Subject: [PATCH] Minor patch (TravisCI related) --- lib/core/common.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index 4fd19c43b..b1f87a8cd 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -3275,7 +3275,7 @@ def parseSqliteTableSchema(value): Parses table column names and types from specified SQLite table schema >>> kb.data.cachedColumns = {} - >>> parseSqliteTableSchema("CREATE TABLE users\\n\\t\\tid INTEGER\\n\\t\\tname TEXT\\n);") + >>> parseSqliteTableSchema("CREATE TABLE users(\\n\\t\\tid INTEGER,\\n\\t\\tname TEXT\\n);") True >>> repr(kb.data.cachedColumns).count(',') == 1 True diff --git a/lib/core/settings.py b/lib/core/settings.py index 4aa3a118c..b2bd23df6 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.5.29" +VERSION = "1.4.5.30" 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)