Avoid waiting 30 seconds when cleaning up the dbms and file system from sqlmap data

This commit is contained in:
Bernardo Damele 2010-10-29 13:09:53 +00:00
parent 963fcb57b6
commit a0df231aa4
3 changed files with 8 additions and 7 deletions

View File

@ -40,7 +40,7 @@ class Abstraction(Web, UDF, xp_cmdshell):
self.udfExecCmd(cmd, silent=silent)
elif kb.dbms == "Microsoft SQL Server":
self.xpCmdshellExecCmd(cmd, silent)
self.xpCmdshellExecCmd(cmd, silent=silent)
else:
errMsg = "Feature not yet implemented for the back-end DBMS"

View File

@ -84,10 +84,10 @@ class Miscellaneous:
else:
cmd = "rm -f %s" % tempFile
self.execCmd(cmd)
self.execCmd(cmd, silent=True)
def createSupportTbl(self, tblName, tblField, tblType):
inject.goStacked("DROP TABLE %s" % tblName)
inject.goStacked("DROP TABLE %s" % tblName, silent=True)
inject.goStacked("CREATE TABLE %s(%s %s)" % (tblName, tblField, tblType))
def cleanup(self, onlyFileTbl=False, udfDict=None):
@ -115,10 +115,10 @@ class Miscellaneous:
logger.info("cleaning up the database management system")
logger.debug("removing support tables")
inject.goStacked("DROP TABLE %s" % self.fileTblName)
inject.goStacked("DROP TABLE %s" % self.fileTblName, silent=True)
if not onlyFileTbl:
inject.goStacked("DROP TABLE %s" % self.cmdTblName)
inject.goStacked("DROP TABLE %s" % self.cmdTblName, silent=True)
if kb.dbms == "Microsoft SQL Server":
return
@ -138,7 +138,7 @@ class Miscellaneous:
dropStr += "(%s)" % inp
logger.debug("removing UDF '%s'" % udf)
inject.goStacked(dropStr)
inject.goStacked(dropStr, silent=True)
logger.info("database management system cleanup finished")

View File

@ -153,7 +153,8 @@ class Takeover(Abstraction, Metasploit, ICMPsh, Registry, Miscellaneous):
errMsg += "is unlikely to receive commands send from you"
logger.error(errMsg)
self.sysUdfs.pop("sys_bineval")
if kb.dbms in ( "MySQL", "PostgreSQL" ):
self.sysUdfs.pop("sys_bineval")
if kb.stackedTest or conf.direct:
web = False