Lucene search

K
openvasCopyright (C) 2010 LSSOPENVAS:102029
HistoryMay 12, 2010 - 12:00 a.m.

Mac OS X 10.5.2 Update / Mac OS X Security Update 2008-001

2010-05-1200:00:00
Copyright (C) 2010 LSS
plugins.openvas.org
124

0.974 High

EPSS

Percentile

99.9%

The remote host is missing Mac OS X 10.5.2 Update / Security Update 2008-001.
One or more of the following components are affected:

Directory Services
Foundation
Launch Services
Mail
NFS
Open Directory
Parental Controls
Samba
Terminal
X11

###################################################################
# OpenVAS Vulnerability Test
#
# Mac OS X 10.5.2 Update / Security Update 2008-001
#
# LSS-NVT-2010-019
#
# Developed by LSS Security Team <http://security.lss.hr>
#
# Copyright (C) 2010 LSS <http://www.lss.hr>
#
# 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, see
# <http://www.gnu.org/licenses/>.
###################################################################

tag_solution = "Update your Mac OS X operating system.

 For more information see:
 http://support.apple.com/kb/HT1457";

tag_summary = "The remote host is missing Mac OS X 10.5.2 Update / Security Update 2008-001.
 One or more of the following components are affected:

 Directory Services
 Foundation
 Launch Services
 Mail
 NFS
 Open Directory
 Parental Controls
 Samba
 Terminal
 X11";


if(description)
{
 script_id(102029);
 script_version("$Revision: 5394 $");
 script_tag(name:"last_modification", value:"$Date: 2017-02-22 10:22:42 +0100 (Wed, 22 Feb 2017) $");
 script_tag(name:"creation_date", value:"2010-05-12 14:48:44 +0200 (Wed, 12 May 2010)");
 script_cve_id("CVE-2007-0355","CVE-2008-0035","CVE-2008-0038","CVE-2008-0039","CVE-2008-0040","CVE-2008-0041","CVE-2007-6015","CVE-2008-0042","CVE-2007-4568","CVE-2008-0037");
 script_name("Mac OS X 10.5.2 Update / Mac OS X Security Update 2008-001");
 script_tag(name:"cvss_base", value:"10.0");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
 script_category(ACT_GATHER_INFO);
 script_copyright("Copyright (C) 2010 LSS");
 script_family("Mac OS X Local Security Checks");
 script_require_ports("Services/ssh", 22);
 script_dependencies("gather-package-list.nasl");
 script_mandatory_keys("ssh/login/osx_name","ssh/login/osx_version");
 script_tag(name : "summary" , value : tag_summary);
 script_tag(name : "solution" , value : tag_solution);
 script_tag(name:"qod_type", value:"package");
 script_tag(name:"solution_type", value:"VendorFix");
 exit(0);
}

include("pkg-lib-macosx.inc");
include("version_func.inc");

ssh_osx_name = get_kb_item("ssh/login/osx_name");
if (!ssh_osx_name) exit (0);

ssh_osx_ver = get_kb_item("ssh/login/osx_version");
if (!ssh_osx_ver) exit (0);

ssh_osx_rls = ssh_osx_name + ' ' + ssh_osx_ver;

pkg_for_ver = make_list("Mac OS X 10.4.11","Mac OS X Server 10.4.11","Mac OS X 10.5.1","Mac OS X Server 10.5.1");

if (rlsnotsupported(rls:ssh_osx_rls, list:pkg_for_ver)) { security_message(0); exit(0);}

if (osx_rls_name(rls:ssh_osx_rls) == osx_rls_name(rls:"Mac OS X 10.4.11")) {
    if (version_is_less(version:osx_ver(ver:ssh_osx_rls), test_version:osx_ver(ver:"Mac OS X 10.4.11"))) { security_message(0); exit(0);}
    else if ((ssh_osx_ver==osx_ver(ver:"Mac OS X 10.4.11")) && (isosxpkgvuln(fixed:"com.apple.pkg.update.security.", diff:"2008.001"))) { security_message(0); exit(0);}
}
if (osx_rls_name(rls:ssh_osx_rls) == osx_rls_name(rls:"Mac OS X Server 10.4.11")) {
    if (version_is_less(version:osx_ver(ver:ssh_osx_rls), test_version:osx_ver(ver:"Mac OS X Server 10.4.11"))) { security_message(0); exit(0);}
    else if ((ssh_osx_ver==osx_ver(ver:"Mac OS X Server 10.4.11")) && (isosxpkgvuln(fixed:"com.apple.pkg.update.security.", diff:"2008.001"))) { security_message(0); exit(0);}
}
if (osx_rls_name(rls:ssh_osx_rls) == osx_rls_name(rls:"Mac OS X 10.5.1")) {
    if (version_is_less(version:osx_ver(ver:ssh_osx_rls), test_version:"10.5.2")) { security_message(0); exit(0); }
}
if (osx_rls_name(rls:ssh_osx_rls) == osx_rls_name(rls:"Mac OS X Server 10.5.1")) {
    if (version_is_less(version:osx_ver(ver:ssh_osx_rls), test_version:"10.5.2")) { security_message(0); exit(0); }
}