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
|
|
@ -371,8 +371,8 @@ class Search:
|
|||
infoMsgDb = ""
|
||||
colList = conf.col.split(',')
|
||||
|
||||
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(',')]
|
||||
|
||||
origTbl = conf.tbl
|
||||
origDb = conf.db
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue