Lucene search

K
openvasCopyright (C) 2017 Greenbone Networks GmbHOPENVAS:1361412562310810929
HistoryApr 18, 2017 - 12:00 a.m.

Apple Mac OS X Multiple Vulnerabilities-01 April-2017

2017-04-1800:00:00
Copyright (C) 2017 Greenbone Networks GmbH
plugins.openvas.org
12

0.892 High

EPSS

Percentile

98.5%

This host is running Apple Mac OS X and
is prone to multiple vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_apple_macosx_mult_vuln01_apr17.nasl 14295 2019-03-18 20:16:46Z cfischer $
#
# Apple Mac OS X Multiple Vulnerabilities-01 April-2017
#
# Authors:
# Rinu Kuriakose <[email protected]>
#
# Copyright:
# Copyright (C) 2017 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.
###############################################################################

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.810929");
  script_version("$Revision: 14295 $");
  script_cve_id("CVE-2010-0540", "CVE-2010-0302", "CVE-2010-1748", "CVE-2010-0545",
                "CVE-2010-0186", "CVE-2010-0187", "CVE-2010-0546", "CVE-2010-1374",
                "CVE-2010-1411", "CVE-2009-4212", "CVE-2010-0734", "CVE-2010-0541",
                "CVE-2010-1381", "CVE-2009-1578", "CVE-2009-1579", "CVE-2009-1580",
                "CVE-2009-1581", "CVE-2009-2964", "CVE-2010-1382");
  script_bugtraq_id(40889, 38510, 40897, 40898, 38198, 38200, 40887, 40896, 40823,
                    37749, 38162, 40895, 40893, 34916, 36196, 40892);
  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: 2019-03-18 21:16:46 +0100 (Mon, 18 Mar 2019) $");
  script_tag(name:"creation_date", value:"2017-04-18 11:40:44 +0530 (Tue, 18 Apr 2017)");
  script_name("Apple Mac OS X Multiple Vulnerabilities-01 April-2017");

  script_tag(name:"summary", value:"This host is running Apple Mac OS X and
  is prone to multiple vulnerabilities.");

  script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");

  script_tag(name:"insight", value:"Multiple flaws exists due to,

  - The Wiki Server does not specify an explicit character set when serving
    HTML documents in response to user requests.

  - Multiple errors in SquirrelMail.

  - A configuration issue exists in Apple's distribution of Samba, the server
    used for SMB file sharing.

  - An input validation error in the Ruby WEBrick HTTP server's handling of
    error pages.

  - A buffer overflow exists in libcurl's handling of gzip-compressed web
    content.

  - An integer overflow exists in AES and RC4 decryption operations of the
    crypto library in the KDC server.

  - Multiple integer overflows in the handling of TIFF files.

  - A directory traversal issue exists in iChat's handling of inline
    image transfers.

  - A symlink following issue exists in Folder Manager.

  - Multiple errors in Adobe Flash Player plug-in.

  - An uninitialized memory read issue exists in the CUPS web interface's
    handling of form variables.

  - An use after free error exists in cupsd.

  - A cross-site request forgery issue exists in the CUPS web interface.");

  script_tag(name:"impact", value:"Successful exploitation will allow attacker
  to conduct cross-site scripting attack, access sensitive information, cause
  an unexpected application termination or arbitrary code execution, upload
  files to arbitrary locations on the filesystem of a user and cause privilege
  escalation.");

  script_tag(name:"affected", value:"Apple Mac OS X and Mac OS X Server
  version 10.5.8, 10.6 through 10.6.3");

  script_tag(name:"solution", value:"Apply the appropriate security patch from
  the reference links.");

  script_tag(name:"solution_type", value:"VendorFix");

  script_tag(name:"qod", value:"30"); ## Build information is not available

  script_xref(name:"URL", value:"https://support.apple.com/en-us/HT4188");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2017 Greenbone Networks GmbH");
  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", re:"ssh/login/osx_version=^10\.[56]");
  exit(0);
}

include("version_func.inc");

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

osVer = get_kb_item("ssh/login/osx_version");
if(!osVer){
  exit(0);
}

if("Mac OS X" >< osName)
{
  ## 10.5.8 prior to build X is also vulnerable.
  if(version_in_range(version:osVer, test_version:"10.6", test_version2:"10.6.3") ||
     version_in_range(version:osVer, test_version:"10.5", test_version2:"10.5.8"))
  {
    report = report_fixed_ver(installed_version:osVer, fixed_version:"10.6.4 or apply patch");
    security_message(data:report);
    exit(0);
  }
  exit(99);
}

exit(0);