mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Trivial update (space check for --suffix)
This commit is contained in:
parent
1f9b248ac4
commit
23d0a04f32
2 changed files with 4 additions and 1 deletions
|
|
@ -298,6 +298,9 @@ class Agent(object):
|
|||
pass
|
||||
|
||||
elif suffix and not comment:
|
||||
if re.search(r"\w\Z", expression) and re.search(r"\A\w", suffix):
|
||||
expression += " "
|
||||
|
||||
expression += suffix.replace('\\', BOUNDARY_BACKSLASH_MARKER)
|
||||
|
||||
return re.sub(r";\W*;", ";", expression)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue