Lucene search

K
openvasCopyright (C) 2011 Greenbone Networks GmbHOPENVAS:1361412562310902625
HistorySep 14, 2011 - 12:00 a.m.

Microsoft SharePoint Multiple Privilege Escalation Vulnerabilities (2451858)

2011-09-1400:00:00
Copyright (C) 2011 Greenbone Networks GmbH
plugins.openvas.org
37

CVSS2

4.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:M/Au:N/C:N/I:P/A:N

AI Score

6.2

Confidence

Low

EPSS

0.939

Percentile

99.2%

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

# Copyright (C) 2011 Greenbone Networks GmbH
# 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-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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_oid("1.3.6.1.4.1.25623.1.0.902625");
  script_version("2022-05-25T07:40:23+0000");
  script_tag(name:"last_modification", value:"2022-05-25 07:40:23 +0000 (Wed, 25 May 2022)");
  script_tag(name:"creation_date", value:"2011-09-14 16:05:49 +0200 (Wed, 14 Sep 2011)");
  script_cve_id("CVE-2011-0653", "CVE-2011-1252", "CVE-2011-1890", "CVE-2011-1891",
                "CVE-2011-1892", "CVE-2011-1893");
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_name("Microsoft SharePoint Multiple Privilege Escalation Vulnerabilities (2451858)");
  script_xref(name:"URL", value:"http://support.microsoft.com/kb/2451858");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/48199");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/49002");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/49004");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/49005");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/49010");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/49511");
  script_xref(name:"URL", value:"https://docs.microsoft.com/en-us/security-updates/securitybulletins/2011/ms11-074");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 Greenbone Networks GmbH");
  script_family("Windows : Microsoft Bulletins");
  script_dependencies("secpod_reg_enum.nasl", "secpod_office_products_version_900032.nasl");
  script_require_ports(139, 445);
  script_mandatory_keys("SMB/registry_enumerated");

  script_tag(name:"impact", value:"Successful exploitation could allow remote attackers to execute arbitrary
  code on the system with elevated privileges via a specially crafted URL or
  or a crafted Web site.");
  script_tag(name:"affected", value:"- Microsoft Windows SharePoint Services 2.0

  - Microsoft Groove 2007 Service Pack 2 and prior

  - Microsoft Office SharePoint Server 2007 Service Pack 2

  - Microsoft Windows SharePoint Services 3.0 Service Pack 2

  - Microsoft Office SharePoint Workspace 2010 Service Pack 1 and prior");
  script_tag(name:"insight", value:"Multiple flaws are due to the way Microsoft SharePoint validates and
  sanitizes user input, parses malicious XML and XSL files and handles
  script contained inside of specific request parameter.");
  script_tag(name:"solution", value:"The vendor has released updates. Please see the references for more information.");
  script_tag(name:"summary", value:"This host is missing an important security update according to
  Microsoft Bulletin MS11-074.");
  script_tag(name:"qod_type", value:"executable_version");
  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");


## MS11-074 Hotfix (2451858)

if(hotfix_missing(name:"2451858") == 0){
#  exit(0);
}

## Microsoft Groove 2007
exeVer = get_kb_item("SMB/Office/Groove/Version");
if(exeVer =~ "^12\..*")
{
  if(version_in_range(version:exeVer, test_version:"12.0", test_version2:"12.0.6552.4999"))
  {
    security_message( port: 0, data: "The target host was found to be vulnerable" );
    exit(0);
  }
}

## Microsoft SharePoint Server 2007
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\";
if(registry_key_exists(key:key))
{
  foreach item (registry_enum_keys(key:key))
  {
    appName = registry_get_sz(item:"DisplayName", key:key + item);
    if("Microsoft Office SharePoint Server 2007" >< appName)
    {
      dllPath =  registry_get_sz(item:"BinPath",
                            key:"SOFTWARE\Microsoft\Office Server\12.0");
      vers  = fetch_file_version(sysPath:dllPath, file_name:"Microsoft.sharepoint.publishing.dll");
      if(vers)
      {
         if(version_is_less(version:vers, test_version:"12.0.6562.5000"))
         {
           security_message( port: 0, data: "The target host was found to be vulnerable" );
           exit(0);
         }
      }
    }
  }
}

## Microsoft Windows SharePoint Services
if(registry_key_exists(key:key))
{
  foreach item (registry_enum_keys(key:key))
  {
    srvcName = registry_get_sz(item:"DisplayName", key:key + item);
    if("Microsoft Windows SharePoint Services" >< srvcName)
    {
      dllPath =  registry_get_sz(item:"SharedFilesDir",
                              key:"SOFTWARE\Microsoft\Shared Tools");

    if(dllPath)
    {
      dllPath1 = dllPath + "web server extensions\12\BIN";
      dllPath2 = dllPath + "web server extensions\60\BIN";
      dllVer1  = fetch_file_version(sysPath:dllPath1, file_name:"Onetutil.dll");
      dllVer2  = fetch_file_version(sysPath:dllPath2, file_name:"Onetutil.dll");

      if(dllVer1 || dllVer2)
      {
        if(version_in_range(version:dllVer2, test_version:"11.0", test_version2:"11.0.8339.0") ||
           version_in_range(version:dllVer1, test_version:"12.0", test_version2:"12.0.6565.5000"))
        {
           security_message( port: 0, data: "The target host was found to be vulnerable" );
           exit(0);
        }
      }
    }
  }
}
}


## Microsoft SharePoint Workspace 2010
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Office14.GROOVER";
if(!registry_key_exists(key:key)) {
    exit(0);
}

worksName =  registry_get_sz(item:"DisplayName", key:key);
if("Microsoft SharePoint Workspace 2010" >< worksName)
{
  worksPath = registry_get_sz(key:key,item:"InstallLocation");
  worksPath += "Office14";
  worksVer  = fetch_file_version(sysPath:worksPath, file_name:"GROOVE.exe");
  if(worksVer && worksVer =~ "^14\..*")
  {
    if(version_is_less(version:worksVer, test_version:"14.0.6106.5000"))
    {
      security_message( port: 0, data: "The target host was found to be vulnerable" );
      exit(0);
    }
  }
}

CVSS2

4.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:M/Au:N/C:N/I:P/A:N

AI Score

6.2

Confidence

Low

EPSS

0.939

Percentile

99.2%