mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
Minor bug fix in local shellcodeexec for Windows path
This commit is contained in:
parent
e35f25b2cb
commit
98f9f3e774
1 changed files with 1 additions and 1 deletions
|
|
@ -539,7 +539,7 @@ class Metasploit:
|
||||||
self.shellcodeexecLocal = paths.SQLMAP_SEXEC_PATH
|
self.shellcodeexecLocal = paths.SQLMAP_SEXEC_PATH
|
||||||
|
|
||||||
if Backend.isOs(OS.WINDOWS):
|
if Backend.isOs(OS.WINDOWS):
|
||||||
self.shellcodeexecLocal += "/windows/shellcodeexec/shellcodeexec.x%s.exe" % Backend.getArch()
|
self.shellcodeexecLocal += "/windows/shellcodeexec.x%s.exe" % Backend.getArch()
|
||||||
else:
|
else:
|
||||||
self.shellcodeexecLocal += "/linux/shellcodeexec.x%s" % Backend.getArch()
|
self.shellcodeexecLocal += "/linux/shellcodeexec.x%s" % Backend.getArch()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue