mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 22:21:30 +00:00
proper fix for that previous "stacked" fix (that one screwed other injection types)
This commit is contained in:
@@ -150,12 +150,10 @@ class Agent:
|
||||
query = kb.injection.prefix
|
||||
|
||||
if query is None:
|
||||
if not kb.injection.prefix and not prefix:
|
||||
query = ""
|
||||
elif kb.injection.prefix is None and prefix:
|
||||
query = "%s " % prefix
|
||||
else:
|
||||
query = "%s " % kb.injection.prefix
|
||||
query = kb.injection.prefix or prefix or ''
|
||||
|
||||
if not (string and string[0] == ';'):
|
||||
query += " "
|
||||
|
||||
query = "%s%s" % (query, string)
|
||||
query = self.cleanupPayload(query)
|
||||
|
||||
Reference in New Issue
Block a user