mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
Fix for an Issue #601
This commit is contained in:
@@ -227,7 +227,7 @@ class Databases:
|
||||
resumeAvailable = True
|
||||
break
|
||||
|
||||
if resumeAvailable:
|
||||
if resumeAvailable and not conf.freshQueries:
|
||||
for db, table in kb.brute.tables:
|
||||
if db == conf.db:
|
||||
if conf.db not in kb.data.cachedTables:
|
||||
@@ -458,7 +458,7 @@ class Databases:
|
||||
resumeAvailable = True
|
||||
break
|
||||
|
||||
if resumeAvailable or colList:
|
||||
if resumeAvailable and not conf.freshQueries or colList:
|
||||
columns = {}
|
||||
|
||||
for column in colList:
|
||||
|
||||
Reference in New Issue
Block a user