mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Update for #4353
This commit is contained in:
parent
5d08b9004e
commit
7460b87f1d
3 changed files with 9 additions and 4 deletions
|
|
@ -525,6 +525,9 @@ class Databases(object):
|
|||
else:
|
||||
return kb.data.cachedColumns
|
||||
|
||||
if conf.exclude:
|
||||
tblList = [_ for _ in tblList if re.search(conf.exclude, _, re.I) is None]
|
||||
|
||||
tblList = filterNone(safeSQLIdentificatorNaming(_, True) for _ in tblList)
|
||||
|
||||
if bruteForce is None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue