Module: Msf::Util::EXE::Linux::Armbe::ClassMethods
- Included in:
- Msf::Util::EXE::Linux::Armbe
- Defined in:
- lib/msf/util/exe/linux/armbe.rb
Instance Method Summary collapse
-
#to_linux_armbe_elf(framework, code, opts = {}) ⇒ String
Create a ARM Little Endian Linux ELF containing the payload provided in
codeto_linux_armbe_elf. -
#to_linux_armbe_elf_dll(framework, code, opts = {}) ⇒ String
Create a ARM Little Endian Linux ELF_DYN containing the payload provided in
codeto_linux_armbe_elf_dll.
Instance Method Details
#to_linux_armbe_elf(framework, code, opts = {}) ⇒ String
Create a ARM Little Endian Linux ELF containing the payload provided in code to_linux_armbe_elf
19 20 21 |
# File 'lib/msf/util/exe/linux/armbe.rb', line 19 def to_linux_armbe_elf(framework, code, opts = {}) to_exe_elf(framework, opts, "template_armbe_linux.bin", code) end |
#to_linux_armbe_elf_dll(framework, code, opts = {}) ⇒ String
Create a ARM Little Endian Linux ELF_DYN containing the payload provided in code to_linux_armbe_elf_dll
31 32 33 |
# File 'lib/msf/util/exe/linux/armbe.rb', line 31 def to_linux_armbe_elf_dll(framework, code, opts = {}) to_exe_elf(framework, opts, "template_armbe_linux_dll.bin", code) end |