Few bug fixes in -d (there were late values in payloads in some cases; sqlalchemy returns RowProxy for tuple)

This commit is contained in:
stamparm
2013-04-15 15:23:45 +02:00
parent f936746423
commit 1c47b33020
3 changed files with 6 additions and 2 deletions

View File

@@ -42,6 +42,8 @@ class Agent(object):
"""
def payloadDirect(self, query):
query = self.cleanupPayload(query)
if query.startswith("AND "):
query = query.replace("AND ", "SELECT ", 1)
elif query.startswith(" UNION ALL "):