| Source | Link |
|---|---|
| nessus | www.nessus.org/u |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(27525);
script_version("1.32");
script_set_attribute(attribute:"plugin_modification_date", value:"2022/02/01");
script_name(english:"Microsoft Office Service Pack Out of Date");
script_summary(english:"Determines the remote Office SP");
script_set_attribute(attribute:"synopsis", value:"The remote office suite is not up to date.");
script_set_attribute(attribute:"description", value:
"The remote version of Microsoft Office has no service pack or the one
installed is no longer supported.");
# http://web.archive.org/web/20070903200039/http://support.microsoft.com/gp/lifesupsps
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?e33c553d");
script_set_attribute(attribute:"solution", value:"Install the latest service pack.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C");
script_set_attribute(attribute:"plugin_publication_date", value:"2007/10/23");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:microsoft:ofice");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_set_attribute(attribute:"agent", value:"windows");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2007-2022 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_family(english:"Windows");
script_dependencies("office_installed.nasl");
script_require_keys("SMB/Registry/Enumerated");
exit(0);
}
#
include("misc_func.inc");
office_sp["2000"] = 3;
office_sp["XP"] = 3;
office_sp["2003"] = 3;
office_sp["2007"] = 3;
office_sp["2010"] = 2;
office_sp["2013"] = 1;
office_min_sp["2000"] = 3;
office_min_sp["XP"] = 3;
office_min_sp["2003"] = 3;
office_min_sp["2007"] = 3;
office_min_sp["2010"] = 2;
office_min_sp["2013"] = 0;
report = NULL;
l = get_kb_list_or_exit("SMB/Office/*/SP");
foreach item (keys(l))
{
version = item - 'SMB/Office/' - '/SP';
sp = l[item];
if (sp == 0)
report_detail = "no service pack";
else
report_detail = "Service Pack " + sp;
if (sp < office_min_sp[version])
{
report +=
'\n' +
'The remote Microsoft Office ' + version + ' system has ' + report_detail + ' applied.\n' +
'The system should have Office ' + version + ' Service Pack ' + office_sp[version] + ' installed.\n';
}
}
if ( report )
security_hole(extra:report, port:get_kb_item("SMB/transport"));
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