| Reporter | Title | Published | Views | Family All 27 |
|---|---|---|---|---|
| Microsoft Windows TabStrip MSCOMCTL.OCX RCE Vulnerability | 15 Aug 201200:00 | – | attackerkb | |
| CVE-2012-1856 | 25 Aug 201509:05 | – | circl | |
| Microsoft Office MSCOMCTL.OCX Remote Code Execution Vulnerability | 3 Mar 202200:00 | – | cisa_kev | |
| Microsoft Windows Common Controls Remote Code Execution (MS12-060; CVE-2012-1856) | 14 Aug 201200:00 | – | checkpoint_advisories | |
| Microsoft Windows Common Controls Remote Code Execution - Ver2 (CVE-2012-1856) | 31 Mar 201400:00 | – | checkpoint_advisories | |
| CVE-2012-1856 | 15 Aug 201201:00 | – | cve | |
| CVE-2012-1856 | 15 Aug 201201:00 | – | cvelist | |
| MS12-060: Vulnerability in Windows common controls could allow remote code execution: August 14, 2012 | 14 Aug 201200:00 | – | mskb | |
| The macro perspective of the office vulnerability, 2010-2018-a vulnerability warning-the black bar safety net | 13 Jun 201900:00 | – | myhack58 | |
| CVE-2012-1856 | 15 Aug 201201:55 | – | nvd |
| Source | Link |
|---|---|
| technet | www.technet.microsoft.com/en-us/security/bulletin/ms12-060 |
| secunia | www.secunia.com/advisories/50247 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms12-060.nasl 5912 2017-04-10 09:01:51Z teissa $
#
# Microsoft Windows Common Controls Remote Code Execution Vulnerability (2720573)
#
# Authors:
# Veerendra G G <[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 an attacker to execute arbitrary code
within the context of the application.
Impact Level: System/Application";
tag_affected = "Microsoft Visual Basic 6.0
Microsoft Commerce Server 2009
Microsoft SQL Server 2000 Service Pack 4
Microsoft SQL Server 2005 Service Pack 4
Microsoft SQL Server 2008 Service Pack 2
Microsoft SQL Server 2008 Service Pack 3
Microsoft Visual FoxPro 8.0 Service Pack 1
Microsoft Visual FoxPro 9.0 Service Pack 2
Microsoft Commerce Server 2002 Service Pack 4
Microsoft Commerce Server 2007 Service Pack 2
Microsoft Office 2003 Service Pack 3 and prior
Microsoft Office 2007 Service Pack 3 and prior
Microsoft Office 2010 Service Pack 1 and prior
Microsoft Host Integration Server 2004 Service Pack 1
Microsoft SQL Server 2000 Analysis Services Service Pack 4
Microsoft SQL Server 2005 Express Edition with Advanced Services Service Pack 4";
tag_insight = "The flaw is due to an error within the TabStrip ActiveX control
in MSCOMCTL.OCX file and can be exploited to execute arbitrary code.";
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-060";
tag_summary = "This host is missing a critical security update according to
Microsoft Bulletin MS12-060.";
if(description)
{
script_id(901211);
script_version("$Revision: 5912 $");
script_bugtraq_id(54948);
script_cve_id("CVE-2012-1856");
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-10 11:01:51 +0200 (Mon, 10 Apr 2017) $");
script_tag(name:"creation_date", value:"2012-08-15 09:05:46 +0530 (Wed, 15 Aug 2012)");
script_name("Microsoft Windows Common Controls Remote Code Execution Vulnerability (2720573)");
script_xref(name : "URL" , value : "http://secunia.com/advisories/50247");
script_xref(name : "URL" , value : "http://technet.microsoft.com/en-us/security/bulletin/ms12-060");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2012 SecPod");
script_family("Windows : Microsoft Bulletins");
script_dependencies("secpod_office_products_version_900032.nasl");
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");
## Variables Initialization
key = "";
ver = "";
keys = "";
item = "";
path = "";
sysPath = "";
dllVer = NULL;
sysVer = NULL;
exeVer = NULL;
## Check for Windows OS
if(!get_kb_item("SMB/WindowsVersion")){
exit(0);
}
## Get System Path
sysPath = smb_get_systemroot();
if(!sysPath){
exit(0);
}
## Get Version from Mscomctl.Ocx file
sysVer = fetch_file_version(sysPath, file_name:"system32\Mscomctl.Ocx");
if(sysVer)
{
## Check for Microsoft Office 2003, 2007 and 2010
if(get_kb_item("MS/Office/Ver") =~ "^[11|12|14].*")
{
if(version_is_less(version:sysVer, test_version:"6.1.98.34"))
{
security_message(0);
exit(0);
}
}
## TODO: Need to update once we get proper info
## Patch is not getting applied on 2005
## Check for SQL Server 2005 and 2008
#foreach ver (make_list("2005", "10"))
#{
# key = "SOFTWARE\Microsoft\Windows\CurrentVersion" +
# "\Uninstall\Microsoft SQL Server " + ver;
# if(registry_key_exists(key:key))
# {
# if(version_is_less(version:sysVer, test_version:"6.1.98.34"))
# {
# security_message(0);
# exit(0);
# }
# }
#}
## Check for Visual Basic 6.0
key = "SOFTWARE\Microsoft\Visual Basic\6.0";
if(registry_key_exists(key:key))
{
if(version_is_less(version:sysVer, test_version:"6.1.98.34"))
{
security_message(0);
exit(0);
}
}
## Check for Visual FoxPro 8.0 and 9.0
foreach ver (make_list("8.0", "9.0"))
{
key = "SOFTWARE\Microsoft\VisualFoxPro\" + ver;
if(registry_key_exists(key:key))
{
if(version_is_less(version:sysVer, test_version:"6.1.98.34"))
{
security_message(0);
exit(0);
}
}
}
}
## Check for Microsoft SQL Server 2000 Analysis Services
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft SQL " +
"Server 2000 Analysis Services";
if(registry_key_exists(key:key))
{
path = registry_get_sz(key:key, item:"InstallLocation");
dllVer = fetch_file_version(sysPath:path, file_name:"bin\msmdctr80.dll");
if(dllVer)
{
if(version_is_less(version:dllVer, test_version:"8.0.2304.0"))
{
security_message(0);
exit(0);
}
}
}
## Check for Microsoft SQL Server 2000
key = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft SQL " +
"Server 2000";
if(registry_key_exists(key:key))
{
path = registry_get_sz(key:key, item:"InstallLocation");
exeVer = fetch_file_version(sysPath:path, file_name:"Binn\sqlservr.exe");
if(exeVer)
{
## Check for GDR and QFE versions
if(version_is_less(version:exeVer, test_version:"2000.80.2066.0") ||
version_in_range(version:exeVer, test_version:"2000.80.2300.0", test_version2:"2000.80.2304.0"))
{
security_message(0);
exit(0);
}
}
}
## Check for Microsoft Integration Server 2004
key = "SOFTWARE\Microsoft\Host Integration Server\6.0";
if(registry_key_exists(key:key))
{
prdName = registry_get_sz(key:key, item:"ProductName");
if("Microsoft Host Integration Server 2004" >< prdName)
{
dllVer = fetch_file_version(sysPath, file_name:"system32\comctl32.Ocx");
if(dllVer)
{
if(version_is_less(version:dllVer, test_version:"6.0.98.34"))
{
security_message(0);
exit(0);
}
}
}
}
## Check for Microsoft Commerce Server 2002, 2007 or 2009
keys = make_list("SOFTWARE\Microsoft\Commerce Server",
"SOFTWARE\Microsoft\Commerce Server 2007",
"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"+
"\Microsoft Commerce Server 2009");
foreach key (keys)
{
if(registry_key_exists(key:key))
{
## Get Version from mscomctl.ocx file
dllVer = fetch_file_version(sysPath, file_name:"system32\mscomctl.ocx");
if(dllVer)
{
if(version_is_less(version:dllVer, test_version:"6.1.98.34"))
{
security_message(0);
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