Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4bb9754

Browse files
committed
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
1 parent 42100e0 commit 4bb9754

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

plugins/generic/enumeration.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,9 +995,12 @@ def getColumns(self, onlyColNames=False):
995995
resumeAvailable = True
996996
break
997997

998-
if resumeAvailable:
998+
if resumeAvailable or colList:
999999
columns = {}
10001000

1001+
for column in colList:
1002+
columns[column] = None
1003+
10011004
for tbl in tblList:
10021005
for db, table, colName, colType in kb.brute.columns:
10031006
if db == conf.db and table == tbl:

0 commit comments

Comments
 (0)