mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46: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
|
||||
break
|
||||
|
||||
if resumeAvailable:
|
||||
if resumeAvailable or colList:
|
||||
columns = {}
|
||||
|
||||
for column in colList:
|
||||
columns[column] = None
|
||||
|
||||
for tbl in tblList:
|
||||
for db, table, colName, colType in kb.brute.columns:
|
||||
if db == conf.db and table == tbl:
|
||||
|
|
Loading…
Reference in New Issue
Block a user