mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Implementation for an Issue #2891
This commit is contained in:
parent
365fa5a52a
commit
e2cc9569e5
12 changed files with 74 additions and 38 deletions
|
|
@ -188,8 +188,8 @@ class Enumeration(GenericEnumeration):
|
|||
else:
|
||||
colList = []
|
||||
|
||||
if conf.excludeCol:
|
||||
colList = [_ for _ in colList if _ not in conf.excludeCol.split(',')]
|
||||
if conf.exclude:
|
||||
colList = [_ for _ in colList if _ not in conf.exclude.split(',')]
|
||||
|
||||
for col in colList:
|
||||
colList[colList.index(col)] = safeSQLIdentificatorNaming(col)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue