diff --git a/data/xml/queries.xml b/data/xml/queries.xml index 172403379..a1c8aaf59 100644 --- a/data/xml/queries.xml +++ b/data/xml/queries.xml @@ -1347,6 +1347,7 @@ + diff --git a/lib/core/settings.py b/lib/core/settings.py index 2e46ad84f..0170ea301 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.10.7.203" +VERSION = "1.10.7.204" 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/tests/test_agent.py b/tests/test_agent.py index 211fbb7fd..12d7a179c 100644 --- a/tests/test_agent.py +++ b/tests/test_agent.py @@ -108,6 +108,7 @@ NULL_WRAPPER = { # hexConvertField: dialects that DO have a hex function, mapped to its token. HEX_FUNCTION = { "Altibase": "HEX_ENCODE(", + "ClickHouse": "hex(", "Cubrid": "HEX(", "H2": "RAWTOHEX(", "IBM DB2": "HEX(",