Lucene search
+L

Microsoft Office Products Insecure Library Loading Vulnerability

🗓️ 09 Sep 2015 00:00:00Reported by Copyright (C) 2015 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 34 Views

Microsoft Office Products Insecure Library Loading Vulnerability, prone to insecure library loading allowing arbitrary code executio

Related
Refs
Code
ReporterTitlePublishedViews
Family
checkpoint_advisories
Check Point Advisories
Microsoft Groove 2007 mso.dll Insecure Library Loading (MS11-016; CVE-2010-3146)
8 Mar 201100:00
checkpoint_advisories
checkpoint_advisories
Check Point Advisories
Microsoft Office Visio 2003 mfc71enu.dll Insecure Library Loading (MS11-055; CVE-2010-3148)
12 Jul 201100:00
checkpoint_advisories
cve
CVE
CVE-2010-3141
27 Aug 201018:10
cve
cve
CVE
CVE-2010-3142
27 Aug 201018:10
cve
cve
CVE
CVE-2010-3146
27 Aug 201018:10
cve
cve
CVE
CVE-2010-3148
27 Aug 201018:10
cve
cvelist
Cvelist
CVE-2010-3141
27 Aug 201018:10
cvelist
cvelist
Cvelist
CVE-2010-3142
27 Aug 201018:10
cvelist
cvelist
Cvelist
CVE-2010-3146
27 Aug 201018:10
cvelist
cvelist
Cvelist
CVE-2010-3148
27 Aug 201018:10
cvelist
Rows per page
# SPDX-FileCopyrightText: 2015 Greenbone AG
# 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-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.902254");
  script_version("2026-04-28T06:28:06+0000");
  script_cve_id("CVE-2010-3141", "CVE-2010-3142", "CVE-2010-3146", "CVE-2010-3148");
  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:"2026-04-28 06:28:06 +0000 (Tue, 28 Apr 2026)");
  script_tag(name:"creation_date", value:"2015-09-09 10:16:10 +0530 (Wed, 09 Sep 2015)");
  script_tag(name:"qod_type", value:"executable_version");
  script_name("Microsoft Office Products Insecure Library Loading Vulnerability");

  script_tag(name:"summary", value:"microsoft product(s) is prone to insecure library loading vulnerability.");

  script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");

  script_tag(name:"insight", value:"The flaw is due to the application
  insecurely loading certain libraries from the current working directory,
  which could allow attackers to execute arbitrary code by tricking a user into
  opening a file from a network share.");

  script_tag(name:"impact", value:"Successful exploitation will allow the
  attackers to execute arbitrary code and conduct DLL hijacking attacks.");

  script_tag(name:"affected", value:"- Microsoft Visio 2003

  - Microsoft Office Groove 2007

  - Microsoft Office PowerPoint 2007/2010");

  script_tag(name:"solution", value:"The vendor has released updates. Please see the references for more information.");

  script_tag(name:"solution_type", value:"VendorFix");

  script_xref(name:"URL", value:"http://www.exploit-db.com/exploits/14723/");
  script_xref(name:"URL", value:"http://www.exploit-db.com/exploits/14782/");
  script_xref(name:"URL", value:"http://www.exploit-db.com/exploits/14746/");
  script_xref(name:"URL", value:"http://www.exploit-db.com/exploits/14744/");
  script_xref(name:"URL", value:"http://www.vupen.com/english/advisories/2010/2188");
  script_xref(name:"URL", value:"http://www.vupen.com/english/advisories/2010/2192");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2015 Greenbone AG");
  script_family("Windows");
  script_dependencies("secpod_office_products_version_900032.nasl", "secpod_ms_office_detection_900025.nasl");
  script_mandatory_keys("MS/Office/Ver", "MS/Office/Prdts/Installed");
  script_require_ports(139, 445);

  script_xref(name:"URL", value:"https://docs.microsoft.com/en-us/security-updates/securitybulletins/2011/ms11-055");
  exit(0);
}

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

officeVer = get_kb_item("MS/Office/Ver");
if(!officeVer){
  exit(0);
}

ver = get_kb_item("SMB/Office/PowerPnt/Version");
if(ver && (ver =~ "^(12|14)\..*"))
{
  if(version_in_range(version:ver, test_version:"14.0", test_version2:"14.0.4760.1000") ||
     version_in_range(version:ver, test_version:"12.0", test_version2:"12.0.6535.5002"))
  {
    VULN = TRUE ;
    fix = "Apply the patch";
  }
}

else if(ver = get_kb_item("SMB/Office/Groove/Version"))
{
  if(ver && (ver =~ "^12\..*"))
  {
    if(version_is_less(version:ver, test_version:"12.0.6550.5004"))
    {
      VULN = TRUE ;
      fix = "12.0.6550.5004";
    }
  }
}

if(VULN)
{
  report = 'Installed version: ' + ver + '\n' +
           'Fixed version: '  +  fix + '\n';
  security_message(data:report);
  exit(0);
}

if(ovPath = registry_get_sz(item:"Path",
         key:"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\visio.exe"))
{
  offPath = ovPath  - "\Visio11" + "OFFICE11";
  ver = fetch_file_version(sysPath:offPath, file_name:"Omfc.dll");
  if(ver && (ver =~ "^11\..*"))
  {
    if(version_is_less(version:ver, test_version:"11.0.8332.0"))
    {
      VULN = TRUE ;
      fix = "11.0.8332.0";
    }
  }
}

if(VULN)
{
  report = 'Installed version: ' + ver + '\n' +
           'Fixed version: '  +  fix + '\n';
  security_message(data:report);
  exit(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