mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Commit related to the last one
This commit is contained in:
parent
096ce7881e
commit
7f371c499d
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ class Agent(object):
|
|||
else:
|
||||
query = kb.injection.prefix or prefix or ""
|
||||
|
||||
if not (expression and expression[0] == ';') and not (query and query[-1] in ('(', ')') and expression and expression[0] in ('(', ')')):
|
||||
if not (expression and expression[0] == ';') and not (query and query[-1] in ('(', ')') and expression and expression[0] in ('(', ')')) and not (query and query[-1] == '('):
|
||||
query += " "
|
||||
|
||||
query = "%s%s" % (query, expression)
|
||||
|
|
|
|||
Loading…
Reference in a new issue