Remove the ppc64le adapters

This is dead code now. We don't have any PPC64LE payloads.
This commit is contained in:
Spencer McIntyre
2025-12-22 14:27:09 -05:00
parent 17ea7f0e53
commit 68965f667e
3 changed files with 0 additions and 75 deletions
@@ -1,25 +0,0 @@
##
# 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 a PPC64LE payload from an HTTPS server.',
'Author' => ['Brendan Watters', 'Spencer McIntyre'],
'Platform' => 'linux',
'Arch' => ARCH_CMD,
'License' => MSF_LICENSE,
'AdaptedArch' => ARCH_PPC64LE,
'AdaptedPlatform' => 'linux'
)
)
end
end