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