mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
using --dump for msaccess with -C switch was for some reason pain in the ass (you had to do the brute forcing again and again). now -C forces the result in those cases
This commit is contained in:
parent
42100e0e5b
commit
4bb9754dfe
|
@ -995,9 +995,12 @@ class Enumeration:
|
||||||
resumeAvailable = True
|
resumeAvailable = True
|
||||||
break
|
break
|
||||||
|
|
||||||
if resumeAvailable:
|
if resumeAvailable or colList:
|
||||||
columns = {}
|
columns = {}
|
||||||
|
|
||||||
|
for column in colList:
|
||||||
|
columns[column] = None
|
||||||
|
|
||||||
for tbl in tblList:
|
for tbl in tblList:
|
||||||
for db, table, colName, colType in kb.brute.columns:
|
for db, table, colName, colType in kb.brute.columns:
|
||||||
if db == conf.db and table == tbl:
|
if db == conf.db and table == tbl:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user