Land #11350, Add missing `to_linux_armle_elf_dll` method to Msf::Util::EXE

Allow generation of ARMLE shared object payloads
4.x
Brendan Coles 2019-02-03 06:24:58 +00:00 committed by Metasploit
parent 8901b3d622
commit b016447ea6
No known key found for this signature in database
GPG Key ID: CDFB5FA52007B954
1 changed files with 11 additions and 0 deletions

View File

@ -1136,6 +1136,17 @@ require 'msf/core/exe/segment_appender'
to_exe_elf(framework, opts, "template_armle_linux.bin", code)
end
# self.to_linux_armle_elf_dll
#
# @param framework [Msf::Framework]
# @param code [String]
# @param opts [Hash]
# @option [String] :template
# @return [String] Returns an elf-so
def self.to_linux_armle_elf_dll(framework, code, opts = {})
to_exe_elf(framework, opts, "template_armle_linux_dll.bin", code)
end
# self.to_linux_aarch64_elf
#
# @param framework [Msf::Framework]