Fixes typo in to_executable

This commit is contained in:
Martin Sutovsky
2026-01-07 12:12:37 +01:00
parent 0f3ac31712
commit 27fc0bf2e2
+1 -1
View File
@@ -110,7 +110,7 @@ module Msf
if plat.index(Msf::Module::Platform::Windows)
return to_win32pe(framework, code, opts) if arch.index(ARCH_X86)
return to_win64pe(framework, code, opts) if arch.index(ARCH_X86)
return to_win64pe(framework, code, opts) if arch.index(ARCH_X64)
elsif plat.index(Msf::Module::Platform::Linux)
return to_linux_armle_elf(framework, code, opts) if arch.index(ARCH_ARMLE)
return to_linux_armbe_elf(framework, code, opts) if arch.index(ARCH_ARMBE)