mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-27 18:53:04 +01: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
1 changed files with 4 additions and 1 deletions
|
|
@ -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 a new issue