Lucene search

K
nessusThis script is Copyright (C) 2009-2018 Tenable Network Security, Inc.QUICKTIME_76.NASL
HistoryJan 22, 2009 - 12:00 a.m.

QuickTime < 7.6 Multiple Vulnerabilities (Windows)

2009-01-2200:00:00
This script is Copyright (C) 2009-2018 Tenable Network Security, Inc.
www.tenable.com
11

9.3 High

CVSS2

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

0.892 High

EPSS

Percentile

98.8%

The version of QuickTime installed on the remote Windows host is older than 7.6. Such versions contain several vulnerabilities :

  • A heap-based buffer overflow in QuickTime’s handling of RTSP URLs may lead to an application crash or arbitrary code execution. (CVE-2009-0001)

  • A heap-based buffer overflow in QuickTime’s handling of THKD atoms in QTVR (QuickTime Virtual Reality) movie file may lead to an application crash or arbitrary code execution. (CVE-2009-0002)

  • A heap-based buffer overflow while processing an AVI movie file may lead to an application crash or arbitrary code execution. (CVE-2009-0003)

  • A buffer overflow in the handling of MPEG-2 video files with MP3 audio content may lead to an application crash or arbitrary code execution. (CVE-2009-0004)

  • A memory corruption in QuickTime’s handling of H.263 encoded movie files may lead to an application crash or arbitrary code execution. (CVE-2009-0005)

  • A signedness issue in QuickTime’s handling of Cinepak encoded movie files may result in a heap buffer overflow. (CVE-2009-0006)

  • A heap-based buffer overflow in QuickTime’s handling of jpeg atoms in QuickTime movie files may lead to an application crash or arbitrary code execution.
    (CVE-2009-0007)

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



include("compat.inc");

if (description)
{
  script_id(35437);
  script_version("1.12");

  script_cve_id("CVE-2009-0001", "CVE-2009-0002", "CVE-2009-0003", "CVE-2009-0004",
                "CVE-2009-0005", "CVE-2009-0006", "CVE-2009-0007");
  script_bugtraq_id(33384, 33385, 33386, 33387, 33388, 33389, 33390);

  script_name(english:"QuickTime < 7.6 Multiple Vulnerabilities (Windows)");
  script_summary(english:"Checks 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 QuickTime installed on the remote Windows host is older
than 7.6. Such versions contain several vulnerabilities :

  - A heap-based buffer overflow in QuickTime's handling of
    RTSP URLs may lead to an application crash or arbitrary
    code execution. (CVE-2009-0001)

  - A heap-based buffer overflow in QuickTime's handling of
    THKD atoms in QTVR (QuickTime Virtual Reality) movie
    file may lead to an application crash or arbitrary code
    execution. (CVE-2009-0002)

  - A heap-based buffer overflow while processing an AVI
    movie file may lead to an application crash or arbitrary
    code execution. (CVE-2009-0003)

  - A buffer overflow in the handling of MPEG-2 video files
    with MP3 audio content may lead to an application crash
    or arbitrary code execution. (CVE-2009-0004)

  - A memory corruption in QuickTime's handling of H.263
    encoded movie files may lead to an application crash or
    arbitrary code execution. (CVE-2009-0005)

  - A signedness issue in QuickTime's handling of Cinepak
    encoded movie files may result in a heap buffer
    overflow. (CVE-2009-0006)

  - A heap-based buffer overflow in QuickTime's handling of
    jpeg atoms in QuickTime movie files may lead to an
    application crash or arbitrary code execution.
    (CVE-2009-0007)" );
 script_set_attribute(attribute:"see_also", value:"http://support.apple.com/kb/HT3403" );
 script_set_attribute(attribute:"see_also", value:"http://lists.apple.com/archives/security-announce/2009/Jan/msg00000.html" );
 script_set_attribute(attribute:"solution", value:
"Either use QuickTime's Software Update preference to upgrade to the
latest version or manually upgrade to QuickTime 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_cwe_id(119, 189, 399);

 script_set_attribute(attribute:"plugin_publication_date", value: "2009/01/22");
 script_cvs_date("Date: 2018/07/25 18:58:06");
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) 2009-2018 Tenable Network Security, Inc.");
  script_dependencies("quicktime_installed.nasl");
  script_require_keys("SMB/QuickTime/Version");
  exit(0);
}

#

include("global_settings.inc");

ver_ui = get_kb_item("SMB/QuickTime/Version_UI");
ver = get_kb_item("SMB/QuickTime/Version");
if (isnull(ver)) exit(0);

iver = split(ver, sep:'.', keep:FALSE);
for (i=0; i<max_index(iver); i++)
  iver[i] = int(iver[i]);

if (
  iver[0] < 7 || 
  (
    iver[0] == 7 && 
    (
      iver[1] < 60 ||
      (iver[1] == 60 && iver[2] < 92)
    )
  )
)
{
  if (report_verbosity && ver_ui)
  {
    report = string(
      "\n",
      "QuickTime ", ver_ui, " is currently installed on the remote host.\n"
    );
    security_hole(port:get_kb_item("SMB/transport"), extra:report);
  }
  else security_hole(get_kb_item("SMB/transport"));
}
VendorProductVersionCPE
applequicktimecpe:/a:apple:quicktime

9.3 High

CVSS2

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

0.892 High

EPSS

Percentile

98.8%