Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74552be commit 96e5d5dCopy full SHA for 96e5d5d
7 files changed
extra/shellcodeexec/linux/shellcodeexec.x32
-3.43 KB
extra/shellcodeexec/linux/shellcodeexec.x32_
1.82 KB
extra/shellcodeexec/linux/shellcodeexec.x64
-5.04 KB
extra/shellcodeexec/linux/shellcodeexec.x64_
2.03 KB
extra/shellcodeexec/windows/shellcodeexec.x32.exe
-6.5 KB
extra/shellcodeexec/windows/shellcodeexec.x32.exe_
3.29 KB
lib/takeover/metasploit.py
@@ -537,9 +537,9 @@ def uploadShellcodeexec(self, web=False):
537
self.shellcodeexecLocal = os.path.join(paths.SQLMAP_EXTRAS_PATH, "shellcodeexec")
538
539
if Backend.isOs(OS.WINDOWS):
540
- self.shellcodeexecLocal = os.path.join(self.shellcodeexecLocal, "windows", "shellcodeexec.x%s.exe" % "32")
+ self.shellcodeexecLocal = os.path.join(self.shellcodeexecLocal, "windows", "shellcodeexec.x%s.exe_" % "32")
541
else:
542
- self.shellcodeexecLocal = os.path.join(self.shellcodeexecLocal, "linux", "shellcodeexec.x%s" % Backend.getArch())
+ self.shellcodeexecLocal = os.path.join(self.shellcodeexecLocal, "linux", "shellcodeexec.x%s_" % Backend.getArch())
543
544
__basename = "tmpse%s%s" % (self._randStr, ".exe" if Backend.isOs(OS.WINDOWS) else "")
545
0 commit comments