mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
update regarding Feature #61
This commit is contained in:
parent
abe1289016
commit
b6ff03690f
|
@ -251,6 +251,9 @@ class Dump:
|
|||
self.__write("+%s+\n" % lines1)
|
||||
|
||||
def dbTableValues(self, tableValues):
|
||||
replication = None
|
||||
rtable = None
|
||||
|
||||
if tableValues is None:
|
||||
return
|
||||
|
||||
|
@ -259,7 +262,9 @@ class Dump:
|
|||
db = "All"
|
||||
table = tableValues["__infos__"]["table"]
|
||||
|
||||
if not conf.multipleTargets:
|
||||
if conf.replicate:
|
||||
replication = Replication("%s%s%s.sqlite" % (conf.dumpPath, os.sep, db))
|
||||
elif not conf.multipleTargets:
|
||||
dumpDbPath = "%s%s%s" % (conf.dumpPath, os.sep, db)
|
||||
|
||||
if not os.path.isdir(dumpDbPath):
|
||||
|
@ -272,8 +277,6 @@ class Dump:
|
|||
separator = str()
|
||||
field = 1
|
||||
fields = len(tableValues) - 1
|
||||
replication = None
|
||||
rtable = None
|
||||
|
||||
columns = tableValues.keys()
|
||||
columns.sort(key=lambda x: x.lower())
|
||||
|
@ -289,7 +292,6 @@ class Dump:
|
|||
|
||||
|
||||
if conf.replicate:
|
||||
replication = Replication("%s%s%s.sqlite" % (conf.outputPath, os.sep, db))
|
||||
cols = list(columns)
|
||||
if "__infos__" in cols:
|
||||
cols.remove("__infos__")
|
||||
|
@ -310,6 +312,7 @@ class Dump:
|
|||
|
||||
self.__write("| %s%s" % (column, blank), n=False)
|
||||
|
||||
if not conf.replicate:
|
||||
if not conf.multipleTargets and field == fields:
|
||||
dataToDumpFile(dumpFP, "%s" % column)
|
||||
elif not conf.multipleTargets:
|
||||
|
@ -319,7 +322,7 @@ class Dump:
|
|||
|
||||
self.__write("|\n%s" % separator)
|
||||
|
||||
if not conf.multipleTargets:
|
||||
if not conf.multipleTargets and not conf.replicate:
|
||||
dataToDumpFile(dumpFP, "\n")
|
||||
|
||||
for i in range(count):
|
||||
|
@ -340,6 +343,7 @@ class Dump:
|
|||
blank = " " * (maxlength - len(value))
|
||||
self.__write("| %s%s" % (value, blank), n=False)
|
||||
|
||||
if not conf.replicate:
|
||||
if not conf.multipleTargets and field == fields:
|
||||
dataToDumpFile(dumpFP, "\"%s\"" % value)
|
||||
elif not conf.multipleTargets:
|
||||
|
@ -352,20 +356,19 @@ class Dump:
|
|||
|
||||
self.__write("|")
|
||||
|
||||
if not conf.multipleTargets:
|
||||
if not conf.multipleTargets and not conf.replicate:
|
||||
dataToDumpFile(dumpFP, "\n")
|
||||
|
||||
self.__write("%s\n" % separator)
|
||||
|
||||
if not conf.multipleTargets:
|
||||
if conf.replicate:
|
||||
logger.info("Table '%s.%s' dumped to sqlite3 file '%s'" % (db, table, replication.dbpath))
|
||||
elif not conf.multipleTargets:
|
||||
dataToDumpFile(dumpFP, "\n")
|
||||
dumpFP.close()
|
||||
|
||||
logger.info("Table '%s.%s' dumped to CSV file '%s'" % (db, table, dumpFileName))
|
||||
|
||||
if conf.replicate:
|
||||
logger.info("Table '%s.%s' dumped to sqlite3 file '%s'" % (db, table, replication.dbpath))
|
||||
|
||||
def dbColumns(self, dbColumns, colConsider, dbs):
|
||||
for column in dbColumns.keys():
|
||||
if colConsider == "1":
|
||||
|
|
Loading…
Reference in New Issue
Block a user