mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 08:52:20 +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}
|
@rtype: C{str}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
if getIdentifiedDBMS() is not None and hasattr(queries[getIdentifiedDBMS()], "case"):
|
||||||
return queries[getIdentifiedDBMS()].case.query % expression
|
return queries[getIdentifiedDBMS()].case.query % expression
|
||||||
|
else:
|
||||||
|
return expression
|
||||||
|
|
||||||
def addPayloadDelimiters(self, inpStr):
|
def addPayloadDelimiters(self, inpStr):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue