mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
minor update regarding --hex
This commit is contained in:
parent
bcf3255fe1
commit
686eacda9a
3 changed files with 14 additions and 14 deletions
|
|
@ -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()]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue