mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-10 02:14:17 +01:00
Fixes #3394
This commit is contained in:
parent
e7ed2bbcbb
commit
0ce2128a9b
1 changed files with 1 additions and 1 deletions
|
|
@ -920,7 +920,7 @@ class Agent(object):
|
|||
elif Backend.isDbms(DBMS.HSQLDB):
|
||||
match = re.search(r"ORDER BY [^ ]+", limitedQuery)
|
||||
if match:
|
||||
limitedQuery = re.sub(r"\s*%s\s*" % match.group(0), " ", limitedQuery).strip()
|
||||
limitedQuery = re.sub(r"\s*%s\s*" % re.escape(match.group(0)), " ", limitedQuery).strip()
|
||||
limitedQuery += " %s" % match.group(0)
|
||||
|
||||
if query.startswith("SELECT "):
|
||||
|
|
|
|||
Loading…
Reference in a new issue