Skip to content

Commit 98f9f3e

Browse files
committed
Minor bug fix in local shellcodeexec for Windows path
1 parent e35f25b commit 98f9f3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/takeover/metasploit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ def uploadShellcodeexec(self, web=False):
539539
self.shellcodeexecLocal = paths.SQLMAP_SEXEC_PATH
540540

541541
if Backend.isOs(OS.WINDOWS):
542-
self.shellcodeexecLocal += "/windows/shellcodeexec/shellcodeexec.x%s.exe" % Backend.getArch()
542+
self.shellcodeexecLocal += "/windows/shellcodeexec.x%s.exe" % Backend.getArch()
543543
else:
544544
self.shellcodeexecLocal += "/linux/shellcodeexec.x%s" % Backend.getArch()
545545

0 commit comments

Comments
 (0)