mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Adding a boundary proposed in Issue #564
This commit is contained in:
parent
7718edac9b
commit
cadbddd607
2 changed files with 5 additions and 266 deletions
|
|
@ -229,7 +229,10 @@ class Agent(object):
|
|||
pass
|
||||
|
||||
elif suffix and not comment:
|
||||
expression += " %s" % suffix
|
||||
if suffix.startswith(GENERIC_SQL_COMMENT):
|
||||
expression += "%s" % suffix
|
||||
else:
|
||||
expression += " %s" % suffix
|
||||
|
||||
return re.sub(r"(?s);\W*;", ";", expression)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue