mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 13:03:50 +03:00
temporary patch to fix UNION query enumeration
This commit is contained in:
parent
92ea8841f8
commit
fdd6075859
|
@ -391,7 +391,7 @@ class Agent(object):
|
|||
elif depth == 0 and char == ',':
|
||||
commas.append(index)
|
||||
commas = sorted(commas)
|
||||
fieldsSplitted = [fields[x:y] for (x, y) in zip(commas, commas[1:])]
|
||||
fieldsSplitted = [fields[x:y].strip(",") for (x, y) in zip(commas, commas[1:])]
|
||||
dbmsDelimiter = queries[Backend.getIdentifiedDbms()].delimiter.query
|
||||
nulledCastedFields = []
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user