Lucene search
K

Microsoft Video ActiveX Control 'msvidctl.dll' BOF Vulnerability

🗓️ 09 Jul 2009 00:00:00Reported by Copyright (C) 2009 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 27 Views

Microsoft Video ActiveX Control 'msvidctl.dll' BOF Vulnerabilit

Related
Refs
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2008-0015
7 Jul 200923:30
attackerkb
Circl
CVE-2008-0015
10 Jul 200900:00
circl
CISA KEV Catalog
Microsoft Windows Video ActiveX Control Remote Code Execution Vulnerability
17 Feb 202600:00
cisa_kev
CISA
CISA Adds Four Known Exploited Vulnerabilities to Catalog
17 Feb 202612:00
cisa
Check Point Advisories
Microsoft ATL Multiple ActiveX Remote Code Executions (MS09-037; CVE-2008-0020; CVE-2009-2493; CVE-2009-2494)
8 Sep 200900:00
checkpoint_advisories
Check Point Advisories
Microsoft DirectShow Video ActiveX Control Stack Buffer Overflow (CVE-2008-0015)
7 Jul 200900:00
checkpoint_advisories
CVE
CVE-2008-0015
7 Jul 200923:00
cve
CVE
CVE-2008-0020
7 Jul 200923:00
cve
Cvelist
CVE-2008-0015
7 Jul 200923:00
cvelist
Cvelist
CVE-2008-0020
7 Jul 200923:00
cvelist
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_ms_video_actvx_bof_vuln_jul09.nasl 5934 2017-04-11 12:28:28Z antu123 $
#
# Microsoft Video ActiveX Control 'msvidctl.dll' BOF Vulnerability
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2009 Greenbone Networks GmbH, http://www.greenbone.net
#
#  Updated to MS09-032 Bulletin (973346) #3502
#    - By Sharath S <[email protected]> on 2009-07-15
#
# Updated By: Madhuri D <[email protected]> on 2010-11-30
#      - To confirm the vulnerability on vista and win 2008
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

if(description)
{
  script_id(800829);
  script_version("$Revision: 5934 $");
  script_tag(name:"last_modification", value:"$Date: 2017-04-11 14:28:28 +0200 (Tue, 11 Apr 2017) $");
  script_tag(name:"creation_date", value:"2009-07-09 10:58:23 +0200 (Thu, 09 Jul 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-2008-0015", "CVE-2008-0020");
  script_bugtraq_id(35558);
  script_name("Microsoft Video ActiveX Control 'msvidctl.dll' BOF Vulnerability");

  script_xref(name : "URL" , value : "http://www.iss.net/threats/329.html");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/35683");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/972890");
  script_xref(name : "URL" , value : "http://isc.sans.org/diary.html?storyid=6733");

  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"executable_version");
  script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
  script_family("Buffer overflow");
  script_dependencies("secpod_reg_enum.nasl");
  script_mandatory_keys("SMB/WindowsVersion");
  script_require_ports(139, 445);
  script_tag(name : "impact" , value : "Successful exploitation could allow execution of arbitrary code that affects
  the TV Tuner library, and can cause memory corruption.
  Impact Level: Application");
  script_tag(name : "affected" , value : "Microsoft Video ActiveX Control on Windows 2000/XP/2003");
  script_tag(name : "insight" , value : "- Stack-based buffer overflow error in MPEG2TuneRequest in msvidctl.dll in
    Microsoft DirectShow can be exploited via a crafted web page.
  - Unspecified error in msvidctl.dll is caused via unknown vectors that trigger
    memory corruption.");
  script_tag(name : "summary" , value : "This host is installed with Microsoft Video ActiveX Control and is prone to
  Buffer Overflow vulnerability.");
  script_tag(name : "solution" , value : "Run Windows Update and update the listed hotfixes or download and
  update mentioned hotfixes in the advisory from the below link,
  http://www.microsoft.com/technet/security/Bulletin/MS09-032.mspx

  Workaround:
  Set the killbit for the CLSID {0955AC62-BF2E-4CBA-A2B9-A63F772D46CF}
  http://www.microsoft.com/technet/security/advisory/972890.mspx");
  exit(0);
}


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

if(!get_kb_item("SMB/WindowsVersion")){
  exit(0);
}

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

# MS09-032 Hotfix (973346)
if(hotfix_missing(name:"973346") == 0){
  exit(0);
}

## Get System32 path
sysPath = smb_get_system32root();
if(sysPath)
{
  vers = fetch_file_version(sysPath, file_name:"msvidctl.dll");
  if(!vers){
    exit(0);
  }
}

if(egrep(pattern:"^6\..*", string:vers))
{
  # Check if Kill-Bit is set for ActiveX control
  if(is_killbit_set(clsid:"{0955AC62-BF2E-4CBA-A2B9-A63F772D46CF}") == 0){
    security_message(0);
  }
}

## Get System Path
sysPath = smb_get_system32root();
if(!sysPath){
  exit(0);
}
dllVer = fetch_file_version(sysPath, file_name:"msvidctl.dll");
if(!dllVer){
  exit(0);
}

if(egrep(pattern:"^6\..*", string:dllVer))
{ 
  # Check if Kill-Bit is set for ActiveX control
  if(is_killbit_set(clsid:"{0955AC62-BF2E-4CBA-A2B9-A63F772D46CF}") == 0){
    security_message(0);
  }
}

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