mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-01-23 22:59:22 +00:00
Merge branch 'master' of github.com:sqlmapproject/sqlmap
This commit is contained in:
@@ -119,13 +119,13 @@ class Dump(object):
|
||||
if elements:
|
||||
self._write("")
|
||||
|
||||
def banner(self,data):
|
||||
def banner(self, data):
|
||||
self.string("banner", data)
|
||||
|
||||
def currentUser(self,data):
|
||||
def currentUser(self, data):
|
||||
self.string("current user", data)
|
||||
|
||||
def currentDb(self,data):
|
||||
def currentDb(self, data):
|
||||
if Backend.isDbms(DBMS.MAXDB):
|
||||
self.string("current database (no practical usage on %s)" % Backend.getIdentifiedDbms(), data)
|
||||
elif Backend.isDbms(DBMS.ORACLE):
|
||||
@@ -133,13 +133,13 @@ class Dump(object):
|
||||
else:
|
||||
self.string("current database", data)
|
||||
|
||||
def hostname(self,data):
|
||||
def hostname(self, data):
|
||||
self.string("hostname", data)
|
||||
|
||||
def dba(self,data):
|
||||
def dba(self, data):
|
||||
self.string("current user is DBA", data)
|
||||
|
||||
def users(self,users):
|
||||
def users(self, users):
|
||||
self.lister("database management system users", users)
|
||||
|
||||
def userSettings(self, header, userSettings, subHeader):
|
||||
@@ -176,7 +176,7 @@ class Dump(object):
|
||||
|
||||
self.singleString("")
|
||||
|
||||
def dbs(self,dbs):
|
||||
def dbs(self, dbs):
|
||||
self.lister("available databases", dbs)
|
||||
|
||||
def dbTables(self, dbTables):
|
||||
@@ -329,7 +329,6 @@ class Dump(object):
|
||||
def dbTableValues(self, tableValues):
|
||||
replication = None
|
||||
rtable = None
|
||||
documentNode, tableNode, bodyNode, headNode, rowNode = (0,) * 5
|
||||
dumpFP = None
|
||||
|
||||
if tableValues is None:
|
||||
|
||||
Reference in New Issue
Block a user