mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-10 02:01:57 +00:00
Fixes #1457
This commit is contained in:
parent
8bf236ce11
commit
d424d4cdc7
1 changed files with 2 additions and 1 deletions
|
|
@ -501,7 +501,8 @@ class Agent(object):
|
|||
elif fieldsMinMaxstr:
|
||||
fieldsToCastStr = fieldsMinMaxstr.groups()[0]
|
||||
elif fieldsExists:
|
||||
fieldsToCastStr = fieldsSelect.groups()[0]
|
||||
if fieldsSelect:
|
||||
fieldsToCastStr = fieldsSelect.groups()[0]
|
||||
elif fieldsSelectTop:
|
||||
fieldsToCastStr = fieldsSelectTop.groups()[0]
|
||||
elif fieldsSelectRownum:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue