| Reporter | Title | Published | Views | Family All 10 |
|---|---|---|---|---|
| Microsoft Office OneNote URL Validation Error (MS08-055; CVE-2008-3007) | 9 Sep 200800:00 | – | checkpoint_advisories | |
| CVE-2008-3007 | 10 Sep 200815:00 | – | cve | |
| CVE-2008-3007 | 10 Sep 200815:00 | – | cvelist | |
| CVE-2008-3007 | 11 Sep 200801:11 | – | nvd | |
| Microsoft Office Remote Code Execution Vulnerabilities (955047) | 10 Sep 200800:00 | – | openvas | |
| Design/Logic Flaw | 11 Sep 200801:11 | – | prion | |
| Microsoft Security Bulletin MS08-055 – Critical Vulnerability in Microsoft Office Could Allow Remote Code Execution (955047) | 10 Sep 200800:00 | – | securityvulns | |
| Microsoft Office code execution | 10 Sep 200800:00 | – | securityvulns | |
| MS08-055: Vulnerabilities in Microsoft Office Could Allow Remote Code Execution (955047) | 10 Sep 200800:00 | – | nessus | |
| Microsoft Office OneNote URL处理远程代码执行漏洞(MS08-055) | 11 Sep 200800:00 | – | seebug |
| Source | Link |
|---|---|
| microsoft | www.microsoft.com/technet/security/bulletin/ms08-055.mspx |
##############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ms08-055_900046.nasl 5863 2017-04-05 07:38:11Z antu123 $
# Description: Microsoft Office Remote Code Execution Vulnerabilities (955047)
#
# Authors:
# Chandan S <[email protected]>
#
# Copyright:
# Copyright (C) 2008 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 = "Remote attackers could be able to execute arbitrary code
via a specially crafted OneNote URI referencing a specially crafted
One Note file.
Impact Level : Application";
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/ms08-055.mspx";
tag_affected = "Microsoft Office XP/2003/2007 on Windows (All).";
tag_insight = "The issue is due to an error in the parsing of a URI using
the onenote:// protocol handler.";
tag_summary = "This host is missing critical security update according to
Microsoft Bulletin MS08-055.";
if(description)
{
script_id(900046);
script_version("$Revision: 5863 $");
script_tag(name:"last_modification", value:"$Date: 2017-04-05 09:38:11 +0200 (Wed, 05 Apr 2017) $");
script_tag(name:"creation_date", value:"2008-09-10 17:51:23 +0200 (Wed, 10 Sep 2008)");
script_bugtraq_id(31067);
script_cve_id("CVE-2008-3007");
script_copyright("Copyright (C) 2008 SecPod");
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_category(ACT_GATHER_INFO);
script_family("Windows : Microsoft Bulletins");
script_name("Microsoft Office Remote Code Execution Vulnerabilities (955047)");
script_dependencies("secpod_reg_enum.nasl", "secpod_ms_office_detection_900025.nasl");
script_mandatory_keys("SMB/WindowsVersion");
script_require_ports(139, 445);
script_xref(name : "URL" , value : "http://www.microsoft.com/technet/security/bulletin/ms08-055.mspx");
script_tag(name : "summary" , value : tag_summary);
script_tag(name : "insight" , value : tag_insight);
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "impact" , value : tag_impact);
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("secpod_smb_func.inc");
include("version_func.inc");
if(hotfix_check_sp(xp:4, win2k:5, win2003:3) <= 0){
exit(0);
}
prgmDir = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion",
item:"ProgramFilesDir");
if(!prgmDir){
exit(0);
}
offVer = get_kb_item("MS/Office/Ver");
if(!offVer){
exit(0);
}
if(offVer =~ "^10\.")
{
dllPath = prgmDir + "\Common Files\Microsoft Shared\Office10\MSO.DLL";
vers = get_version(dllPath);
if(vers == NULL){
exit(0);
}
# Grep for version < 10.0.6845
if(egrep(pattern:"^10\.0\.([0-5]?[0-9]?[0-9]?[0-9]|6([0-7][0-9][0-9]" +
"|8([0-3][0-9]|4[0-4])))$", string:vers)){
security_message(0);
}
exit(0);
}
if(offVer =~ "^11\.")
{
dllPath = prgmDir + "\Common Files\Microsoft Shared\Office11\MSO.DLL";
vers = get_version(dllPath);
if(vers == NULL){
exit(0);
}
# Grep for version < 11.0.8221
if(egrep(pattern:"^11\.0\.([0-7]?[0-9]?[0-9]?[0-9]|8([01][0-9][0-9]" +
"|2[01][0-9]|220))$", string:vers)){
security_message(0);
}
exit(0);
}
if(offVer =~ "^12\.")
{
dllPath = prgmDir + "\Common Files\Microsoft Shared\Office12\MSO.DLL";
vers = get_version(dllPath);
if(vers == NULL){
exit(0);
}
# Grep for version < 12.0.6320.5000
if(egrep(pattern:"^12\.0\.([0-5].*|62.*|63[01][0-9].*|6320\.[0-4]?" +
"[0-9]?[0-9]?[0-9])$", string:vers)){
security_message(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