Lucene search

K
nessusThis script is Copyright (C) 2009-2018 Tenable Network Security, Inc.OPERA_964.NASL
HistoryMar 03, 2009 - 12:00 a.m.

Opera < 9.64 Multiple Vulnerabilities

2009-03-0300:00:00
This script is Copyright (C) 2009-2018 Tenable Network Security, Inc.
www.tenable.com
15

CVSS2

10

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

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

EPSS

0.04

Percentile

92.1%

The version of Opera installed on the remote host is earlier than 9.64 and thus reportedly affected by multiple issues :

  • A memory-corruption vulnerability when processing specially crafted JPEG files could allow an attacker to execute arbitrary code with the privileges of the affected application. (926)
  • It may be possible for certain plugins to execute arbitrary code in the context of a different domain. An attacker could exploit this to steal authentication credentials as well as carry out other attacks.
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if (description)
{
  script_id(35761);
  script_version("1.14");

  script_cve_id(
    "CVE-2009-0914",
    "CVE-2009-0915",
    "CVE-2009-0916"
  );
  script_bugtraq_id(33961);

  script_name(english:"Opera < 9.64 Multiple Vulnerabilities");
  script_summary(english:"Checks version number of Opera");

 script_set_attribute(attribute:"synopsis", value:
"The remote host contains a web browser that is affected by multiple
issues." );
 script_set_attribute(attribute:"description", value:
"The version of Opera installed on the remote host is earlier than 9.64
and thus reportedly affected by multiple issues :

  - A memory-corruption vulnerability when processing specially
    crafted JPEG files could allow an attacker to execute arbitrary
    code with the privileges of the affected application. (926)
  
  - It may be possible for certain plugins to execute arbitrary code
    in the context of a different domain. An attacker could exploit
    this to steal authentication credentials as well as carry out
    other attacks.");
    
 script_set_attribute(attribute:"see_also", value:"http://web.archive.org/web/20170921133116/http://www.opera.com/docs/changelogs/windows/964/" );
 script_set_attribute(attribute:"see_also", value:"http://web.archive.org/web/20130225221001/http://www.opera.com/support/kb/view/926/" );
 script_set_attribute(attribute:"solution", value:
"Upgrade to Opera 9.64 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(399);

 script_set_attribute(attribute:"plugin_publication_date", value: "2009/03/03");
 script_cvs_date("Date: 2018/11/15 20:50:28");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/a:opera:opera_browser");
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("opera_installed.nasl");
  script_require_keys("SMB/Opera/Version");

  exit(0);
}

include("global_settings.inc");

version_ui = get_kb_item("SMB/Opera/Version_UI");
version = get_kb_item("SMB/Opera/Version");
if (isnull(version)) exit(0);

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

if (
  ver[0] < 9 ||
  (
    ver[0] == 9 &&
    (
      ver[1] < 64
    )
  )
)
{
  if (report_verbosity && version_ui)
  {
    report = string(
      "\n",
      "Opera ", version_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"));
}

CVSS2

10

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

COMPLETE

Integrity Impact

COMPLETE

Availability Impact

COMPLETE

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

EPSS

0.04

Percentile

92.1%