mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Fix for an Issue #364
This commit is contained in:
parent
457217f2d3
commit
b35a0810ef
1 changed files with 1 additions and 1 deletions
|
|
@ -443,7 +443,7 @@ class Agent(object):
|
|||
elif fieldsSelectFrom:
|
||||
_ = zeroDepthSearch(query, " FROM ")
|
||||
fieldsToCastStr = query[:unArrayizeValue(_)] if _ else query
|
||||
fieldsToCastStr = re.sub(r"\ASELECT\s+", "", fieldsToCastStr)
|
||||
fieldsToCastStr = re.sub(r"\ASELECT%s\s+" % prefixRegex, "", fieldsToCastStr)
|
||||
elif fieldsSelect:
|
||||
fieldsToCastStr = fieldsSelect.groups()[0]
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue