mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Avoid waiting 30 seconds when cleaning up the dbms and file system from sqlmap data
This commit is contained in:
@@ -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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user