mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
Fix for an Issue #601
This commit is contained in:
parent
b83d531ab3
commit
de8cb15350
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user