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 4b54517 commit fb74136Copy full SHA for fb74136
lib/msf/core/payload.rb
@@ -552,6 +552,8 @@ def build(asm, off={})
552
when ARCH_X64 then Metasm::X86_64.new
553
when ARCH_PPC then Metasm::PowerPC.new
554
when ARCH_ARMLE then Metasm::ARM.new
555
+ when ARCH_MIPSLE then Metasm::MIPS.new(:little)
556
+ when ARCH_MIPSBE then Metasm::MIPS.new(:big)
557
else
558
elog("Broken payload #{refname} has arch unsupported with assembly: #{module_info["Arch"].inspect}")
559
elog("Call stack:\n#{caller.join("\n")}")
0 commit comments