mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
this way order given in -C is preserved
This commit is contained in:
parent
c93f2a703d
commit
c4d6a367e9
|
@ -1114,7 +1114,10 @@ class Enumeration:
|
|||
|
||||
kb.data.cachedColumns = self.getColumns(onlyColNames=True)
|
||||
|
||||
colList = kb.data.cachedColumns[conf.db][conf.tbl].keys()
|
||||
if conf.col:
|
||||
colList = conf.col.split(",")
|
||||
else:
|
||||
colList = kb.data.cachedColumns[conf.db][conf.tbl].keys()
|
||||
|
||||
if colList in ([None], ['None']):
|
||||
warnMsg = "unable to retrieve column names"
|
||||
|
|
Loading…
Reference in New Issue
Block a user