Cleaning some garbage (hard coded paths with linux native slashes)

This commit is contained in:
Miroslav Stampar
2013-01-07 16:51:00 +01:00
parent 425df067eb
commit 74552bea87
2 changed files with 3 additions and 4 deletions

View File

@@ -534,12 +534,12 @@ class Metasploit:
os.unlink(self._shellcodeFilePath)
def uploadShellcodeexec(self, web=False):
self.shellcodeexecLocal = paths.SQLMAP_SEXEC_PATH
self.shellcodeexecLocal = os.path.join(paths.SQLMAP_EXTRAS_PATH, "shellcodeexec")
if Backend.isOs(OS.WINDOWS):
self.shellcodeexecLocal += "/windows/shellcodeexec.x%s.exe" % "32"
self.shellcodeexecLocal = os.path.join(self.shellcodeexecLocal, "windows", "shellcodeexec.x%s.exe" % "32")
else:
self.shellcodeexecLocal += "/linux/shellcodeexec.x%s" % Backend.getArch()
self.shellcodeexecLocal = os.path.join(self.shellcodeexecLocal, "linux", "shellcodeexec.x%s" % Backend.getArch())
__basename = "tmpse%s%s" % (self._randStr, ".exe" if Backend.isOs(OS.WINDOWS) else "")