mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor bug fix
This commit is contained in:
parent
e4e9b11b79
commit
534f51f9fc
|
@ -670,7 +670,10 @@ class Agent:
|
||||||
@rtype: C{str}
|
@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):
|
def addPayloadDelimiters(self, inpStr):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user