diff --git a/modules/payloads/adapters/cmd/linux/http/ppc64le.rb b/modules/payloads/adapters/cmd/linux/http/ppc64le.rb deleted file mode 100644 index 5fda32bcb7..0000000000 --- a/modules/payloads/adapters/cmd/linux/http/ppc64le.rb +++ /dev/null @@ -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::HTTP - include Msf::Payload::Adapter::Fetch::LinuxOptions - - def initialize(info = {}) - super( - update_info( - info, - 'Name' => 'HTTP Fetch', - 'Description' => 'Fetch and execute a PPC64LE payload from an HTTP server.', - 'Author' => ['Brendan Watters', 'Spencer McIntyre'], - 'Platform' => 'linux', - 'Arch' => ARCH_CMD, - 'License' => MSF_LICENSE, - 'AdaptedArch' => ARCH_PPC64LE, - 'AdaptedPlatform' => 'linux' - ) - ) - end -end diff --git a/modules/payloads/adapters/cmd/linux/https/ppc64le.rb b/modules/payloads/adapters/cmd/linux/https/ppc64le.rb deleted file mode 100644 index b860d35bca..0000000000 --- a/modules/payloads/adapters/cmd/linux/https/ppc64le.rb +++ /dev/null @@ -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 diff --git a/modules/payloads/adapters/cmd/linux/tftp/ppc64le.rb b/modules/payloads/adapters/cmd/linux/tftp/ppc64le.rb deleted file mode 100644 index 96f84501f9..0000000000 --- a/modules/payloads/adapters/cmd/linux/tftp/ppc64le.rb +++ /dev/null @@ -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::TFTP - include Msf::Payload::Adapter::Fetch::LinuxOptions - - def initialize(info = {}) - super( - update_info( - info, - 'Name' => 'TFTP Fetch', - 'Description' => 'Fetch and execute a PPC64LE payload from a TFTP server.', - 'Author' => ['Brendan Watters', 'Spencer McIntyre'], - 'Platform' => 'linux', - 'Arch' => ARCH_CMD, - 'License' => MSF_LICENSE, - 'AdaptedArch' => ARCH_PPC64LE, - 'AdaptedPlatform' => 'linux' - ) - ) - end -end