Lucene search

K
openvasCopyright (C) 2011 SecPodOPENVAS:902552
HistoryAug 11, 2011 - 12:00 a.m.

Microsoft .NET Framework Chart Control Information Disclosure Vulnerability (2567943)

2011-08-1100:00:00
Copyright (C) 2011 SecPod
plugins.openvas.org
4

0.038 Low

EPSS

Percentile

90.9%

This host is missing an important security update according to
Microsoft Bulletin MS11-066.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms11-066.nasl 5362 2017-02-20 12:46:39Z cfi $
#
# Microsoft .NET Framework Chart Control Information Disclosure Vulnerability (2567943)
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2011 SecPod, http://www.secpod.com
#
# 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 could allow attacker to gain access to sensitive
  information that may aid in further attacks.
  Impact Level: Application";
tag_affected = "Microsoft .NET Framework 4.0
  Microsoft Chart Control for .NET Framework 3.5 SP1";
tag_insight = "The flaw is due to an error in the ASP.NET Chart controls when
  encountering special characters within a URI. This can be exploited to read
  the contents of arbitrary files in the web site directory or subdirectories
  via a specially crafted GET request to a server hosting the Chart controls.";
tag_solution = "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/ms11-066.mspx";
tag_summary = "This host is missing an important security update according to
  Microsoft Bulletin MS11-066.";

if(description)
{
  script_id(902552);
  script_version("$Revision: 5362 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-20 13:46:39 +0100 (Mon, 20 Feb 2017) $");
  script_tag(name:"creation_date", value:"2011-08-11 06:41:03 +0200 (Thu, 11 Aug 2011)");
  script_cve_id("CVE-2011-1977");
  script_bugtraq_id(48985);
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:N/A:N");
  script_name("Microsoft .NET Framework Chart Control Information Disclosure Vulnerability (2567943)");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/45508/");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2487367");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2500170");
  script_xref(name : "URL" , value : "http://www.microsoft.com/technet/security/bulletin/ms11-066.mspx");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("Windows : Microsoft Bulletins");
  script_dependencies("secpod_reg_enum.nasl");
  script_require_ports(139, 445);
  script_mandatory_keys("SMB/WindowsVersion");

  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");

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

## MS11-066 Hotfix
if((hotfix_missing(name:"2487367") == 0) ||
   (hotfix_missing(name:"2500170") == 0)) {
  exit(0);
}

## Confirm .NET
key = "SOFTWARE\Microsoft\ASP.NET\";
if(!registry_key_exists(key:key)){
  exit(0);
}

## Try to Get Version
foreach item (registry_enum_keys(key:key))
{
  path = registry_get_sz(key:key + item, item:"Path");
  if("\Microsoft.NET\Framework" >< path)
  {
    ## Get version from System.Web.DataVisualization.dll file
    dllVer = fetch_file_version(sysPath:path, 
                                file_name:"System.Web.DataVisualization.dll");
    if(dllVer)
    {
      ## .NET Framework 4.0 GDR 4.0.30319.236 LDR 4.0.30319.461
      if(version_in_range(version:dllVer, test_version:"4.0.30319.000", test_version2:"4.0.30319.235")||
         version_in_range(version:dllVer, test_version:"4.0.30319.400", test_version2:"4.0.30319.460"))
      {
        security_message(0);
        exit(0);
      }
    }
  }
}

## Confirm Microsoft Chart Controls for .NET Framework 3.5 Service Pack 1
key = "SOFTWARE\Microsoft\NET Framework Chart Setup\NDP\v3.5";
if(!registry_key_exists(key:key)){
  exit(0);
}

## Get InstallPath
chartPath = registry_get_sz(key:key, item:"InstallPath");
if(! chartPath){
  exit(0);
}

## Get Version from System.Web.DataVisualization.dll
chartVer = fetch_file_version(sysPath:chartPath, file_name:"System.Web.DataVisualization.dll");
if(! chartVer){
  exit(0);
}

## Check for Microsoft Chart Controls version < 3.5.30729.5681
if(version_in_range(version:chartVer, test_version:"3.5.30729.0000", test_version2:"3.5.30729.5680")){
  security_message(0);
}

0.038 Low

EPSS

Percentile

90.9%