mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor bug fix
This commit is contained in:
parent
e4e9b11b79
commit
534f51f9fc
1 changed files with 4 additions and 1 deletions
|
|
@ -670,7 +670,10 @@ class Agent:
|
|||
@rtype: C{str}
|
||||
"""
|
||||
|
||||
return queries[getIdentifiedDBMS()].case.query % expression
|
||||
if getIdentifiedDBMS() is not None and hasattr(queries[getIdentifiedDBMS()], "case"):
|
||||
return queries[getIdentifiedDBMS()].case.query % expression
|
||||
else:
|
||||
return expression
|
||||
|
||||
def addPayloadDelimiters(self, inpStr):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue