Skip to content

Commit 2a9da9d

Browse files
committed
Fixing CI/CD errors
1 parent 2aafdc0 commit 2a9da9d

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

data/xml/queries.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1951,7 +1951,7 @@
19511951
<substring query="SUBSTRING(%s,%d,%d)"/>
19521952
<concatenate query="%s||%s"/>
19531953
<case query="SELECT (CASE WHEN (%s) THEN '1' ELSE '0' END) FROM DUMMY"/>
1954-
<hex query="HEX(%s)"/>
1954+
<hex query="BINTOHEX(TO_BINARY(%s))"/>
19551955
<inference query="ASCII(SUBSTRING((%s),%d,1))>%d"/>
19561956
<banner query="SELECT VERSION FROM SYS.M_DATABASE"/>
19571957
<current_user query="SELECT CURRENT_USER FROM DUMMY"/>

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.7.61"
23+
VERSION = "1.10.7.62"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

tests/test_agent.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
"PostgreSQL": "COALESCE",
9595
"Presto": "COALESCE",
9696
"Raima Database Manager": "IFNULL",
97+
"SAP HANA": "IFNULL",
9798
"SAP MaxDB": "VALUE",
9899
"SQLite": "COALESCE",
99100
"Snowflake": "NVL",
@@ -115,6 +116,7 @@
115116
"Oracle": "RAWTOHEX(",
116117
"PostgreSQL": "ENCODE(",
117118
"Presto": "TO_HEX(",
119+
"SAP HANA": "BINTOHEX(",
118120
"SAP MaxDB": "HEX(",
119121
"SQLite": "HEX(",
120122
"Spanner": "TO_HEX(",

0 commit comments

Comments
 (0)