mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
minor update regarding --hex
This commit is contained in:
@@ -279,12 +279,7 @@ class Agent:
|
||||
@rtype: C{str}
|
||||
"""
|
||||
|
||||
# SQLite version 2 does not support neither CAST() nor IFNULL(),
|
||||
# introduced only in SQLite version 3
|
||||
if Backend.isDbms(DBMS.SQLITE) or conf.noCast:
|
||||
return field
|
||||
|
||||
if field.startswith("(CASE") or field.startswith("(IIF"):
|
||||
if field.startswith("(CASE") or field.startswith("(IIF") or conf.noCast:
|
||||
nulledCastedField = field
|
||||
else:
|
||||
_ = queries[Backend.getIdentifiedDbms()]
|
||||
|
||||
Reference in New Issue
Block a user