mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Refactor to --search -C and minor bug fix - See #190.
This commit is contained in:
parent
c9ee11e0e4
commit
e0e2349529
5 changed files with 373 additions and 214 deletions
|
|
@ -140,7 +140,7 @@ class Dump:
|
|||
for db, tblData in dbs.items():
|
||||
for tbl, colData in tblData.items():
|
||||
for col, dataType in colData.items():
|
||||
if column in col:
|
||||
if column.lower() in col.lower():
|
||||
if db in printDbs:
|
||||
if tbl in printDbs[db]:
|
||||
printDbs[db][tbl][col] = dataType
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue