Module: Msf::Util::EXE::Linux::Ppc64::ClassMethods

Included in:
Msf::Util::EXE::Linux::Ppc64
Defined in:
lib/msf/util/exe/linux/ppc64.rb

Instance Method Summary collapse

Instance Method Details

#to_linux_ppc64_elf(framework, code, opts = {}) ⇒ String

Create a PPC64 64-bit BE Linux ELF containing the payload provided in code to_linux_ppc64_elf

Parameters:

  • framework (Msf::Framework)
  • code (String)
  • opts (Hash) (defaults to: {})
  • [String] (Hash)

    a customizable set of options

Returns:

  • (String)

    Returns an elf



18
19
20
# File 'lib/msf/util/exe/linux/ppc64.rb', line 18

def to_linux_ppc64_elf(framework, code, opts = {})
  to_exe_elf(framework, opts, "template_ppc64_linux.bin", code, true)
end