Lucene search

K
nessusThis script is Copyright (C) 2008-2018 Tenable Network Security, Inc.OPERA_961.NASL
HistoryOct 21, 2008 - 12:00 a.m.

Opera < 9.61 Multiple Vulnerabilities

2008-10-2100:00:00
This script is Copyright (C) 2008-2018 Tenable Network Security, Inc.
www.tenable.com
15

5.8 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

NONE

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

0.856 High

EPSS

Percentile

98.6%

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

  • It may be possible to reveal a user’s browsing history by exploiting certain constructs in Opera’s History Search results (903).

  • Opera’s Fast Forward feature is affected by a cross-site scripting vulnerability (904).

  • While previewing certain news feeds, it may be possible for certain scripts to subscribe an user to arbitrary feeds, and also view contents of user subscribed feeds (905).

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



include("compat.inc");

if (description)
{
  script_id(34459);
  script_version("1.13");

  script_cve_id("CVE-2008-4696", "CVE-2008-4697", "CVE-2008-4698", "CVE-2008-4725");
  script_bugtraq_id(31842, 31869);
  script_xref(name:"Secunia", value:"32299");
  
  script_name(english:"Opera < 9.61 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 several
issues." );
 script_set_attribute(attribute:"description", value:
"The version of Opera installed on the remote host is earlier than 9.61
and thus reportedly affected by several issues :

  - It may be possible to reveal a user's browsing history 
    by exploiting certain constructs in Opera's History
    Search results (903).
  
  - Opera's Fast Forward feature is affected by a cross-site
    scripting vulnerability (904). 

  - While previewing certain news feeds, it may be possible 
    for certain scripts to subscribe an user to arbitrary 
    feeds, and also view contents of user subscribed feeds 
    (905)." );
 script_set_attribute(attribute:"see_also", value:"http://www.opera.com/support/search/view/903/" );
 script_set_attribute(attribute:"see_also", value:"http://www.opera.com/support/search/view/904/" );
 script_set_attribute(attribute:"see_also", value:"http://www.opera.com/support/search/view/905/" );
 script_set_attribute(attribute:"see_also", value:"http://web.archive.org/web/20170714083617/http://www.opera.com:80/docs/changelogs/windows/961/" );
 script_set_attribute(attribute:"solution", value:
"Upgrade to Opera 9.61 or later." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/I:N/A:N");
 script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"true");
 script_set_attribute(attribute:"exploit_framework_core", value:"true");
 script_set_attribute(attribute:"metasploit_name", value:'Opera historysearch XSS');
 script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");
 script_set_attribute(attribute:"exploit_framework_canvas", value:"true");
 script_set_attribute(attribute:"canvas_package", value:'D2ExploitPack');
 script_cwe_id(79, 264);
 script_set_attribute(attribute:"plugin_publication_date", value: "2008/10/21");
 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) 2008-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]  < 61
    )
  )
)
{
  if (report_verbosity && version_ui)
  {
    report = string(
      "\n",
      "Opera ", version_ui, " is currently installed on the remote host.\n"
    );
    security_warning(port:get_kb_item("SMB/transport"), extra:report);
  }
  else security_warning(get_kb_item("SMB/transport"));
}
VendorProductVersionCPE
operaopera_browsercpe:/a:opera:opera_browser

5.8 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

NONE

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

0.856 High

EPSS

Percentile

98.6%