Add MIPS64 fetch adapters

This commit is contained in:
Spencer McIntyre
2023-05-25 13:20:59 -04:00
parent 8a0dfa57a0
commit d7098aa06d
3 changed files with 75 additions and 0 deletions
@@ -0,0 +1,25 @@
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
module MetasploitModule
include Msf::Payload::Adapter::Fetch::Https
include Msf::Payload::Adapter::Fetch::LinuxOptions
def initialize(info = {})
super(
update_info(
info,
'Name' => 'HTTPS Fetch',
'Description' => 'Fetch and execute an x64 payload from an HTTPS server.',
'Author' => ['Brendan Watters', 'Spencer McIntyre'],
'Platform' => 'linux',
'Arch' => ARCH_CMD,
'License' => MSF_LICENSE,
'AdaptedArch' => ARCH_MIPS64,
'AdaptedPlatform' => 'linux'
)
)
end
end