mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Implements #3993
This commit is contained in:
parent
c91fcbb0c7
commit
ce9618c307
8 changed files with 38 additions and 17 deletions
|
|
@ -5,6 +5,8 @@ Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
|||
See the file 'LICENSE' for copying permission
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from lib.core.agent import agent
|
||||
from lib.core.common import arrayizeValue
|
||||
from lib.core.common import Backend
|
||||
|
|
@ -376,7 +378,7 @@ class Search(object):
|
|||
colList = conf.col.split(',')
|
||||
|
||||
if conf.exclude:
|
||||
colList = [_ for _ in colList if _ not in conf.exclude.split(',')]
|
||||
colList = [_ for _ in colList if re.search(conf.exclude, _, re.I) is None]
|
||||
|
||||
origTbl = conf.tbl
|
||||
origDb = conf.db
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue