Lucene search

K
openvasCopyright (c) 2012 Greenbone Networks GmbHOPENVAS:802968
HistorySep 25, 2012 - 12:00 a.m.

Mac OS X v10.6.8 Multiple Vulnerabilities (2012-004)

2012-09-2500:00:00
Copyright (c) 2012 Greenbone Networks GmbH
plugins.openvas.org
17

0.975 High

EPSS

Percentile

100.0%

This host is missing an important security update according to
Mac OS X 10.6.8 Update/Mac OS X Security Update 2012-004.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_macosx_su12-004.nasl 6521 2017-07-04 14:51:10Z cfischer $
#
# Mac OS X v10.6.8 Multiple Vulnerabilities (2012-004)
#
# Authors:
# Madhuri D <[email protected]>
#
# Copyright:
# Copyright (c) 2012 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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 attackers to cause a buffer overflow,
  disclose potentially sensitive information or cause a DoS.
  Impact Level: System/Application";
tag_affected = "Apache
  BIND
  CoreText
  Data Security
  DirectoryService
  ImageIO
  Installer
  International Components for Unicode
  Kernel
  LoginWindow
  Mail
  Mobile Accounts
  PHP
  Profile Manager
  QuickLook
  QuickTime
  Ruby
  USB";
tag_insight = "For more information on the vulnerabilities refer to the links below.";
tag_solution = "Run Mac Updates and update the Security Update 2012-004,
  For updates refer to http://support.apple.com/kb/DL1586";
tag_summary = "This host is missing an important security update according to
  Mac OS X 10.6.8 Update/Mac OS X Security Update 2012-004.";

if(description)
{
  script_id(802968);
  script_version("$Revision: 6521 $");
  script_cve_id("CVE-2012-0021", "CVE-2012-0031", "CVE-2012-0053", "CVE-2012-0650",
                "CVE-2012-1173", "CVE-2012-3719", "CVE-2012-0831", "CVE-2012-1172",
                "CVE-2012-1823", "CVE-2012-2143", "CVE-2012-2311", "CVE-2012-2386",
                "CVE-2012-2688", "CVE-2012-0671", "CVE-2012-0670", "CVE-2012-3722",
                "CVE-2012-0668", "CVE-2011-3368", "CVE-2011-3607", "CVE-2011-4317",
                "CVE-2011-3026", "CVE-2011-3048", "CVE-2011-4599", "CVE-2011-3048",
                "CVE-2011-3389");
  script_bugtraq_id(51705, 51407, 51706, 55623, 52891, 55623, 51954, 53403, 49778,
                    53388, 53729, 47545, 54638, 53584, 53582, 55612, 49957, 50494,
                    50802, 52049, 52830, 51006, 52830);
  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_tag(name:"last_modification", value:"$Date: 2017-07-04 16:51:10 +0200 (Tue, 04 Jul 2017) $");
  script_tag(name:"creation_date", value:"2012-09-25 19:33:16 +0530 (Tue, 25 Sep 2012)");
  script_name("Mac OS X v10.6.8 Multiple Vulnerabilities (2012-004)");
  script_xref(name : "URL" , value : "http://support.apple.com/kb/HT5501");
  script_xref(name : "URL" , value : "http://support.apple.com/kb/DL1586");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/50628/");
  script_xref(name : "URL" , value : "http://lists.apple.com/archives/security-announce/2012/Sep/msg00004.html");

  script_copyright("Copyright (c) 2012 Greenbone Networks GmbH");
  script_category(ACT_GATHER_INFO);
  script_family("Mac OS X Local Security Checks");
  script_dependencies("gather-package-list.nasl");
  script_mandatory_keys("ssh/login/osx_name", "ssh/login/osx_version");
  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:"package");
  script_tag(name:"solution_type", value:"VendorFix");
  exit(0);
}


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

## Variable Initialization
osName = "";
osVer = "";

## Get the OS name
osName = get_kb_item("ssh/login/osx_name");
if(!osName){
  exit (0);
}

## Get the OS Version
osVer = get_kb_item("ssh/login/osx_version");
if(!osVer){
 exit(0);
}

## Check for the Mac OS X and Mac OS X Server
if("Mac OS X" >< osName)
{
  ## Check the affected OS versions
  if(version_is_equal(version:osVer, test_version:"10.6.8"))
  {
    ## Check for the security update 2012.004
    if(isosxpkgvuln(fixed:"com.apple.pkg.update.security.", diff:"2012.004")){
      security_message(0);
    }
  }
}