Lucene search
+L

Microsoft Windows Indeo Codec Multiple Vulnerabilities

🗓️ 17 Dec 2009 00:00:00Reported by Copyright (C) 2009 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 41 Views

Microsoft Windows Indeo Codec Multiple Vulnerabilities

Related
Refs
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2009-4210
13 Dec 200901:00
cve
cve
CVE
CVE-2009-4309
13 Dec 200901:00
cve
cve
CVE
CVE-2009-4310
13 Dec 200901:00
cve
cve
CVE
CVE-2009-4311
13 Dec 200901:00
cve
cve
CVE
CVE-2009-4312
13 Dec 200901:00
cve
cve
CVE
CVE-2009-4313
13 Dec 200901:00
cve
cvelist
Cvelist
CVE-2009-4210
13 Dec 200901:00
cvelist
cvelist
Cvelist
CVE-2009-4309
13 Dec 200901:00
cvelist
cvelist
Cvelist
CVE-2009-4310
13 Dec 200901:00
cvelist
cvelist
Cvelist
CVE-2009-4311
13 Dec 200901:00
cvelist
Rows per page
# SPDX-FileCopyrightText: 2009 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.801090");
  script_version("2026-04-28T06:28:06+0000");
  script_tag(name:"last_modification", value:"2026-04-28 06:28:06 +0000 (Tue, 28 Apr 2026)");
  script_tag(name:"creation_date", value:"2009-12-17 08:14:37 +0100 (Thu, 17 Dec 2009)");
  script_tag(name:"cvss_base", value:"9.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
  script_cve_id("CVE-2009-4210", "CVE-2009-4309", "CVE-2009-4310",
                "CVE-2009-4311", "CVE-2009-4312", "CVE-2009-4313");
  script_name("Microsoft Windows Indeo Codec Multiple Vulnerabilities");

  script_xref(name:"URL", value:"http://support.microsoft.com/kb/976138");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/37251");
  script_xref(name:"URL", value:"http://support.microsoft.com/kb/955759");
  script_xref(name:"URL", value:"http://www.microsoft.com/technet/security/advisory/954157.mspx");
  script_xref(name:"URL", value:"http://support.microsoft.com/kb/954157");

  script_tag(name:"qod_type", value:"executable_version");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2009 Greenbone AG");
  script_family("Windows");
  script_dependencies("secpod_reg_enum.nasl");
  script_require_ports(139, 445);
  script_mandatory_keys("SMB/registry_enumerated");

  script_tag(name:"impact", value:"Successful exploitation will let the remote attackers compromise a vulnerable
  system.");

  script_tag(name:"affected", value:"- Microsoft Windows 2K  Service Pack 4 and prior

  - Microsoft Windows XP  Service Pack 3 and prior

  - Microsoft Windows 2K3 Service Pack 2 and prior");

  script_tag(name:"insight", value:"Multiple flaws exist due to:

  - An error in the Indeo41 codec when processing a specific size within the
  'movi' record of a IV41 stream can be exploited to cause a heap-based buffer overflow.

  - An error in the Indeo41 codec when decompressing a video stream can be
  exploited to cause a stack-based buffer overflow.

  - An unspecified error in the Indeo codec can be exploited to corrupt memory.

  - An error in the Indeo32 codec when decoding a IV32 stream can be exploited
  to cause memory corruption.

  - Other vulnerabilities also exist and are caused due to unspecified errors
  in the Indeo codec and can be exploited to corrupt memory by tricking a user
  into viewing specially crafted media content.");

  script_tag(name:"summary", value:"Microsoft Windows Indeo codec is prone to multiple vulnerabilities.");

  script_tag(name:"solution", value:"The vendor has released updates, please see the references
  for more information.");

  script_tag(name:"solution_type", value:"VendorFix");

  exit(0);
}

include("smb_nt.inc");
include("secpod_reg.inc");
include("version_func.inc");
include("secpod_smb_func.inc");

function IndeoCodecVersion(filepath)
{
  share = ereg_replace(pattern:"([A-Z]):.*", replace:"\1$", string:filepath);
  file = ereg_replace(pattern:"[A-Z]:(.*)", replace:"\1", string:filepath);
  fileVer = GetVer(file:file, share:share);
  return fileVer;
}

if(hotfix_check_sp(xp:4, win2003:3, win2k:5) <= 0){
  exit(0);
}

dllPath = registry_get_sz(key:"SOFTWARE\Microsoft\COM3\Setup", item:"Install Path");
if(!dllPath){
  exit(0);
}

if((hotfix_missing(name:"976138") == 1))
{
  if(hotfix_check_sp(win2k:5) > 0)
  {
    directxVer = registry_get_sz(key:"SOFTWARE\Microsoft\DirectX", item:"Version");
    if(egrep(pattern:"^4\.0[7-9]\..*", string:directxVer))
    {
      quartzVer = IndeoCodecVersion(filepath:dllPath + "\Quartz.dll");
      if(quartzVer)
      {
        if(version_is_less(version:quartzVer, test_version:"6.5.1.912")){
          security_message( port: 0, data: "The target host was found to be vulnerable" );
          exit(0);
        }
      }
    }
  }
}

if(registry_key_exists(key:"SOFTWARE\Classes\CLSID\{87CA6F02-49E4-11CF-A3FE" +
                            "-00AA003735BE}\InprocServer32") &&
   registry_key_exists(key:"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32"))
{
  axVer = IndeoCodecVersion(filepath:dllPath + "\ir41_32.ax");
  if(axVer)
  {
    if(version_is_less_equal(version:axVer, test_version:"4.51.16.3"))
    {
      security_message( port: 0, data: "The target host was found to be vulnerable" );
      exit(0);
    }
  }
}

if((hotfix_missing(name:"955759") == 1))
{
  aclayerPath = dllPath - "\system32" - "\System32" + "\AppPatch\Aclayers.dll";
  aclayerVer = IndeoCodecVersion(filepath:aclayerPath);
  if(aclayerVer)
  {
    if(hotfix_check_sp(win2k:5) > 0)
    {
      if(version_is_less(version:aclayerVer, test_version:"5.0.2195.7358")){
        security_message( port: 0, data: "The target host was found to be vulnerable" );
      }
    }

    else if(hotfix_check_sp(xp:4) > 0)
    {
      SP = get_kb_item("SMB/WinXP/ServicePack");
      if("Service Pack 2" >< SP)
      {
        if(version_is_less(version:aclayerVer, test_version:"5.1.2600.3647")){
          security_message( port: 0, data: "The target host was found to be vulnerable" );
        }
        exit(0);
      }
      else if("Service Pack 3" >< SP)
      {
        if(version_is_less(version:aclayerVer, test_version:"5.1.2600.5906")){
          security_message( port: 0, data: "The target host was found to be vulnerable" );
        }
        exit(0);
      }
      security_message( port: 0, data: "The target host was found to be vulnerable" );
    }

    else if(hotfix_check_sp(win2003:3) > 0)
    {
      SP = get_kb_item("SMB/Win2003/ServicePack");
      if("Service Pack 2" >< SP)
      {
        if(version_is_less(version:aclayerVer, test_version:"5.2.3790.4624")){
          security_message( port: 0, data: "The target host was found to be vulnerable" );
        }
        exit(0);
      }
      security_message( port: 0, data: "The target host was found to be vulnerable" );
    }
  }
}

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation