mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
Put a space always between the user's provided prefix and sqlmap payload
This commit is contained in:
parent
697b32554c
commit
9f53048ff4
|
@ -148,7 +148,7 @@ class Agent:
|
|||
raise sqlmapNoneDataException, "unsupported injection type"
|
||||
|
||||
if conf.prefix:
|
||||
query = conf.prefix
|
||||
query = "%s " % conf.prefix.strip()
|
||||
else:
|
||||
query = case.usage.prefix.format % eval(case.usage.prefix.params)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user