Lucene search

K
nessusThis script is Copyright (C) 2005-2018 Tenable Network Security, Inc.NETSCAPE_BROWSER_8033.NASL
HistorySep 14, 2005 - 12:00 a.m.

Netscape Browser < 8.0.4 Multiple Vulnerabilities

2005-09-1400:00:00
This script is Copyright (C) 2005-2018 Tenable Network Security, Inc.
www.tenable.com
11

The remote host is using Netscape Browser / Netscape Navigator, an alternative web browser.

The version of Netscape Browser / Netscape Navigator installed on the remote host is prone to multiple flaws, including one that may allow an attacker to execute arbitrary code on the affected system.

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

include("compat.inc");

if (description) {
  script_id(19696);
  script_version("1.25");

  script_cve_id("CVE-2005-2602", "CVE-2005-3089");
  script_bugtraq_id(14526, 14924);

  script_name(english:"Netscape Browser < 8.0.4 Multiple Vulnerabilities");
 
 script_set_attribute(attribute:"synopsis", value:
"A web browser on the remote host is prone to multiple flaws, including
arbitrary code execution." );
 script_set_attribute(attribute:"description", value:
"The remote host is using Netscape Browser / Netscape Navigator, an
alternative web browser. 

The version of Netscape Browser / Netscape Navigator installed on the
remote host is prone to multiple flaws, including one that may allow
an attacker to execute arbitrary code on the affected system." );
 script_set_attribute(attribute:"see_also", value:"http://security-protocols.com/advisory/sp-x17-advisory.txt" );
 script_set_attribute(attribute:"see_also", value:"https://secuniaresearch.flexerasoftware.com/advisories/16944/" );
 script_set_attribute(attribute:"solution", value:
"The Netscape Browser/Navigator has been discontinued.  While these
issues were reportedly fixed in 8.0.4, it is strongly recommended that
you consider upgrading to the latest version of a Mozilla Browser." );
 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:"plugin_publication_date", value: "2005/09/14");
 script_set_attribute(attribute:"vuln_publication_date", value: "2005/08/09");
 script_cvs_date("Date: 2018/11/15 20:50:27");
 script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe",value:"cpe:/a:netscape:navigator"); 
script_end_attributes();

  script_summary(english:"Checks for Netscape Browser <= 8.0.3.3");
  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows");
  script_copyright(english:"This script is Copyright (C) 2005-2018 Tenable Network Security, Inc.");
  script_dependencies("netscape_browser_detect.nasl");
  script_require_keys("SMB/Netscape/installed");
  exit(0);
}

#

include("global_settings.inc");


list = get_kb_list("SMB/Netscape/*");
if (isnull(list)) exit(0);

foreach key (keys(list))
{
  ver = key - "SMB/Netscape/";
  if (
    ver && 
    (
      ver =~ "^8\.0\.[0-3]([^0-9]|$)" ||
      (report_paranoia > 1 && ver =~ "^[0-7]\.")
    )
  )
  {
    security_hole(get_kb_item("SMB/transport"));
    exit(0);
  }
}
VendorProductVersionCPE
netscapenavigatorcpe:/a:netscape:navigator
Related for NETSCAPE_BROWSER_8033.NASL