Lucene search

K
openvasCopyright (c) 2012 SecPodOPENVAS:902932
HistoryNov 14, 2012 - 12:00 a.m.

Microsoft Internet Explorer Multiple Use-After-Free Vulnerabilities (2761451)

2012-11-1400:00:00
Copyright (c) 2012 SecPod
plugins.openvas.org
6

0.731 High

EPSS

Percentile

98.1%

This host is missing a critical security update according to
Microsoft Bulletin MS12-071.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms12-071.nasl 5958 2017-04-17 09:02:19Z teissa $
#
# Microsoft Internet Explorer Multiple Use-After-Free Vulnerabilities (2761451)
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2012 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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.
###############################################################################

tag_impact = "Successful exploitation will allow remote attackers to gain sensitive
  information or execute arbitrary code in the context of the current user.
  Impact Level: System/Application";
tag_affected = "Microsoft Internet Explorer version 9.x";
tag_insight = "Multiple use-after-free errors within the 'CFormElement', 'CTreePos' and
  'CTreeNode' class and can be exploited to dereference already freed memory.";
tag_solution = "Run Windows Update and update the listed hotfixes or download and
  update mentioned hotfixes in the advisory from the below link,
  http://technet.microsoft.com/en-us/security/bulletin/ms12-071";
tag_summary = "This host is missing a critical security update according to
  Microsoft Bulletin MS12-071.";

if(description)
{
  script_id(902932);
  script_version("$Revision: 5958 $");
  script_cve_id("CVE-2012-1538", "CVE-2012-1539", "CVE-2012-4775");
  script_bugtraq_id(56420, 56421, 56422);
  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_tag(name:"last_modification", value:"$Date: 2017-04-17 11:02:19 +0200 (Mon, 17 Apr 2017) $");
  script_tag(name:"creation_date", value:"2012-11-14 09:38:03 +0530 (Wed, 14 Nov 2012)");
  script_name("Microsoft Internet Explorer Multiple Use-After-Free Vulnerabilities (2761451)");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/51202/");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2761451");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2761451");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2761451");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2761451");
  script_xref(name : "URL" , value : "http://technet.microsoft.com/en-us/security/bulletin/ms12-071");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (c) 2012 SecPod");
  script_family("Windows : Microsoft Bulletins");
  script_dependencies("gb_ms_ie_detect.nasl");
  script_require_keys("MS/IE/Version");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"qod_type", value:"registry");
  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");

## Variables Initialization
sysPath = "";
ieVer   = "";
dllVer  = "";

## Check for OS and Service Pack
if(hotfix_check_sp(winVista:3, win7:2, win2008:3, win2008r2:2) <= 0){
  exit(0);
}

## Get IE Version from KB
ieVer = get_kb_item("MS/IE/Version");
if(!ieVer || !(ieVer =~ "^9\..*")){
  exit(0);
}

## Get System Path
sysPath = smb_get_systemroot();
if(!sysPath ){
  exit(0);
}

## Get Version from Mshtml.dll
dllVer = fetch_file_version(sysPath, file_name:"system32\Mshtml.dll");
if(!dllVer){
  exit(0);
}

## Check for Mshtml.dll version
if(version_in_range(version:dllVer, test_version:"9.0.8112.16000", test_version2:"9.0.8112.16454")||
   version_in_range(version:dllVer, test_version:"9.0.8112.20000", test_version2:"9.0.8112.20561")){
  security_message(0);
}