mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-10 10:33:09 +00:00
Fixing CI/CD errors
This commit is contained in:
parent
2aafdc0e46
commit
2a9da9d9e5
3 changed files with 4 additions and 2 deletions
|
|
@ -1951,7 +1951,7 @@
|
|||
<substring query="SUBSTRING(%s,%d,%d)"/>
|
||||
<concatenate query="%s||%s"/>
|
||||
<case query="SELECT (CASE WHEN (%s) THEN '1' ELSE '0' END) FROM DUMMY"/>
|
||||
<hex query="HEX(%s)"/>
|
||||
<hex query="BINTOHEX(TO_BINARY(%s))"/>
|
||||
<inference query="ASCII(SUBSTRING((%s),%d,1))>%d"/>
|
||||
<banner query="SELECT VERSION FROM SYS.M_DATABASE"/>
|
||||
<current_user query="SELECT CURRENT_USER FROM DUMMY"/>
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from lib.core.enums import OS
|
|||
from thirdparty import six
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.10.7.61"
|
||||
VERSION = "1.10.7.62"
|
||||
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)
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ NULL_WRAPPER = {
|
|||
"PostgreSQL": "COALESCE",
|
||||
"Presto": "COALESCE",
|
||||
"Raima Database Manager": "IFNULL",
|
||||
"SAP HANA": "IFNULL",
|
||||
"SAP MaxDB": "VALUE",
|
||||
"SQLite": "COALESCE",
|
||||
"Snowflake": "NVL",
|
||||
|
|
@ -115,6 +116,7 @@ HEX_FUNCTION = {
|
|||
"Oracle": "RAWTOHEX(",
|
||||
"PostgreSQL": "ENCODE(",
|
||||
"Presto": "TO_HEX(",
|
||||
"SAP HANA": "BINTOHEX(",
|
||||
"SAP MaxDB": "HEX(",
|
||||
"SQLite": "HEX(",
|
||||
"Spanner": "TO_HEX(",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue