Lucene search

K
nessusThis script is Copyright (C) 2014-2018 Tenable Network Security, Inc.QUICKTIME_776.NASL
HistoryOct 24, 2014 - 12:00 a.m.

QuickTime < 7.7.6 Multiple Vulnerabilities (Windows)

2014-10-2400:00:00
This script is Copyright (C) 2014-2018 Tenable Network Security, Inc.
www.tenable.com
39

CVSS2

9.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

AV:N/AC:M/Au:N/C:C/I:C/A:C

EPSS

0.646

Percentile

97.9%

The version of Apple QuickTime installed on the remote Windows host is prior to 7.7.6. It is, therefore, affected by the following vulnerabilities :

  • A memory corruption flaw exists when handling specially crafted RLE encoded videos due to user-supplied input not being properly sanitized. (CVE-2014-1391)

  • A buffer overflow flaw exists when parsing specially crafted MIDI files due to user-supplied input not being properly validated. (CVE-2014-4350)

  • A buffer overflow flaw exists when parsing specially crafted M4A files due to user-supplied input not being properly validated. (CVE-2014-4351)

  • A memory corruption flaw exists in the mvhd atom when handling malformed version numbers and flags due to not properly sanitizing user-supplied input. (CVE-2014-4979)

Successful exploitation of these issues by a remote attacker can result in program termination or arbitrary code execution, subject to the user’s privileges.

#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
  script_id(78678);
  script_version("1.6");
  script_cvs_date("Date: 2018/11/15 20:50:28");

  script_cve_id(
    "CVE-2014-1391",
    "CVE-2014-4350",
    "CVE-2014-4351",
    "CVE-2014-4979"
  );
  script_bugtraq_id(68852, 69907, 69908, 70643);
  script_xref(name:"APPLE-SA", value:"APPLE-SA-2014-10-22-1");

  script_name(english:"QuickTime < 7.7.6 Multiple Vulnerabilities (Windows)");
  script_summary(english:"Checks the version of QuickTime on Windows.");

  script_set_attribute(attribute:"synopsis", value:
"The remote Windows host contains an application that is affected by
multiple vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"The version of Apple QuickTime installed on the remote Windows host is
prior to 7.7.6. It is, therefore, affected by the following
vulnerabilities :

  - A memory corruption flaw exists when handling specially
    crafted RLE encoded videos due to user-supplied input
    not being properly sanitized. (CVE-2014-1391)

  - A buffer overflow flaw exists when parsing specially
    crafted MIDI files due to user-supplied input not being
    properly validated. (CVE-2014-4350)

  - A buffer overflow flaw exists when parsing specially
    crafted M4A files due to user-supplied input not being
    properly validated. (CVE-2014-4351)

  - A memory corruption flaw exists in the mvhd atom when
    handling malformed version numbers and flags due to not
    properly sanitizing user-supplied input. (CVE-2014-4979)

Successful exploitation of these issues by a remote attacker can
result in program termination or arbitrary code execution, subject to
the user's privileges.");
  script_set_attribute(attribute:"see_also", value:"https://support.apple.com/en-us/HT203092");
  script_set_attribute(attribute:"see_also", value:"https://www.securityfocus.com/archive/1/533790/30/0/threaded");
  script_set_attribute(attribute:"solution", value:"Upgrade to QuickTime 7.7.6 or later.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C");
  script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"false");

  script_set_attribute(attribute:"vuln_publication_date", value:"2014/07/23");
  script_set_attribute(attribute:"patch_publication_date", value:"2014/10/22");
  script_set_attribute(attribute:"plugin_publication_date", value:"2014/10/24");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:apple:quicktime");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows");

  script_copyright(english:"This script is Copyright (C) 2014-2018 Tenable Network Security, Inc.");

  script_dependencies("quicktime_installed.nasl");
  script_require_keys("SMB/QuickTime/Version");

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");

kb_base = "SMB/QuickTime/";

version = get_kb_item_or_exit(kb_base+"Version");
path = get_kb_item_or_exit(kb_base+"Path");

version_ui = get_kb_item(kb_base+"Version_UI");
if (isnull(version_ui)) version_report = version;
else version_report = version_ui;

fixed_version = "7.76.80.95";
fixed_version_ui = "7.7.6 (1680.95.31)";

if (ver_compare(ver:version, fix:fixed_version) == -1)
{
  port = get_kb_item("SMB/transport");
  if (!port) port = 445;

  if (report_verbosity > 0)
  {
    report =
      '\n  Path              : ' + path + 
      '\n  Installed version : ' + version_report + 
      '\n  Fixed version     : ' + fixed_version_ui + 
      '\n';
    security_hole(port:port, extra:report);
  }
  else security_hole(port);
  exit(0);
}
audit(AUDIT_INST_PATH_NOT_VULN, 'QuickTime Player', version_report, path);
VendorProductVersionCPE
applequicktimecpe:/a:apple:quicktime

CVSS2

9.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

AV:N/AC:M/Au:N/C:C/I:C/A:C

EPSS

0.646

Percentile

97.9%