Lucene search

K
openvasCopyright (C) 2012 SecPodOPENVAS:903045
HistoryOct 26, 2012 - 12:00 a.m.

MS Forefront Unified Access Gateway Remote Code Execution Vulnerabilities (2544641)

2012-10-2600:00:00
Copyright (C) 2012 SecPod
plugins.openvas.org
52

0.68 Medium

EPSS

Percentile

97.6%

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

###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms11-079.nasl 5958 2017-04-17 09:02:19Z teissa $
#
# MS Forefront Unified Access Gateway Remote Code Execution Vulnerabilities (2544641)
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2012 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 attackers to conduct cross-site scripting
  and HTTP response splitting attacks, cause a denial of service.
  Impact Level: Application";
tag_affected = "Microsoft Forefront Unified Access Gateway 2010
  Microsoft Forefront Unified Access Gateway 2010 Update 1
  Microsoft Forefront Unified Access Gateway 2010 Update 2
  Microsoft Forefront Unified Access Gateway 2010 Service Pack 1";
tag_insight = "The flaws are due to,
  - when Forefront Unified Access Gateway (UAG) does not properly handle
    script contained in a specially crafted request, allowing for malicious
    content to be reflected back to the user.
  - by an error within the MicrosoftClient.jar Java applet insecurely
    implements certain methods.
  - by improper validation of a NULL value contained within the session cookie.";
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/ms11-079";
tag_summary = "This host is missing an important security update according to
  Microsoft Bulletin MS11-079.";

if(description)
{
  script_id(903045);
  script_version("$Revision: 5958 $");
  script_cve_id("CVE-2011-1895", "CVE-2011-1896", "CVE-2011-1897", "CVE-2011-1969",
                "CVE-2011-2012");
  script_bugtraq_id(49979, 49972, 49974, 49983, 49980);
  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-10-26 17:47:08 +0530 (Fri, 26 Oct 2012)");
  script_name("MS Forefront Unified Access Gateway Remote Code Execution Vulnerabilities (2544641)");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/46402/");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2522482");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2522483");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2522484");
  script_xref(name : "URL" , value : "http://support.microsoft.com/kb/2522485");
  script_xref(name : "URL" , value : "http://technet.microsoft.com/en-us/security/bulletin/ms11-079");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2012 SecPod");
  script_family("Windows : Microsoft Bulletins");
  script_dependencies("gb_ms_forefront_unified_access_gateway_detect.nasl");
  script_require_keys("MS/Forefront/UAG/Ver");
  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");

## Variable Initialization
dllVer = "";
uagVer = "";
path = "";

## Get the version from KB to confirm application is installed
uagVer = get_kb_item("MS/Forefront/UAG/Ver");
if(!uagVer){
  exit(0);
}

## Get Program Files Path
path = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion",
                       item:"ProgramFilesDir");
if(!path){
  exit(0);
}

## Get the Whlfilter.dll file version
dllVer = fetch_file_version(sysPath:path,
         file_name:"Microsoft Forefront Unified Access Gateway\von\bin\Whlfilter.dll");
if(!dllVer){
  exit(0);
}

## Checking for Whlfilter.dll file version
if(version_in_range(version:dllVer, test_version:"4.0.1101.0", test_version2:"4.0.1101.62") ||
   version_in_range(version:dllVer, test_version:"4.0.1152.100", test_version2:"4.0.1152.162") ||
   version_in_range(version:dllVer, test_version:"4.0.1269.200", test_version2:"4.0.1269.283") ||
   version_in_range(version:dllVer, test_version:"4.0.1752.10000", test_version2:"4.0.1752.10072")){
  security_message(0);
}