Lucene search

K
nessusThis script is Copyright (C) 2011-2018 Tenable Network Security, Inc.ORACLE_HTTP_SERVER_CPU_OCT_2006.NASL
HistoryNov 21, 2011 - 12:00 a.m.

Oracle HTTP Server (October 2006 CPU)

2011-11-2100:00:00
This script is Copyright (C) 2011-2018 Tenable Network Security, Inc.
www.tenable.com
22

According to its banner, the version of Oracle HTTP Server installed on the remote host is potentially affected by multiple vulnerabilities.

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

include("compat.inc");

if (description)
{
  script_id(17731);
  script_cvs_date("Date: 2018/11/15 20:50:25");
  script_version("1.9");

  script_cve_id(
    "CVE-2006-5346",
    "CVE-2006-5347",
    "CVE-2006-5348",
    "CVE-2006-5349",
    "CVE-2006-5350",
    "CVE-2006-5353",
    "CVE-2006-5354",
    "CVE-2006-5357"
  );
  script_bugtraq_id(20588);

  script_name(english:"Oracle HTTP Server (October 2006 CPU)");
  script_summary(english:"Checks version in Server response header");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server may be affected by multiple unspecified
vulnerabilities.");
 script_set_attribute(attribute:"description", value:
"According to its banner, the version of Oracle HTTP Server installed
on the remote host is potentially affected by multiple
vulnerabilities.");

  script_set_attribute(attribute:"solution", value:
"Apply the appropriate patch according to the October 2006 Oracle
Critical Patch Update advisory.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/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:"exploithub_sku", value:"EH-11-486");
  script_set_attribute(attribute:"exploit_framework_exploithub", value:"true");

  script_set_attribute(attribute:"see_also", value:"https://www.oracle.com/technetwork/topics/security/cpuoct2006-095368.html");
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?4fe4f311");
  script_set_attribute(attribute:"vuln_publication_date", value:"2006/10/17");
  script_set_attribute(attribute:"patch_publication_date", value:"2006/10/17");
  script_set_attribute(attribute:"plugin_publication_date", value:"2011/11/21");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:oracle:http_server");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Web Servers");

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

  script_dependencies("oracle_http_server_version.nasl");
  script_require_keys("www/oracle");
  script_require_ports("Services/www", 80);

  exit(0);
}

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

# Only PCI considers this an issue.
if (!get_kb_item("Settings/PCI_DSS")) exit(0, "PCI-DSS compliance checking is not enabled.");

port = get_http_port(default:80);

# Make sure this is Oracle.
get_kb_item_or_exit("www/"+port+"/oracle");

# Get version information from the KB.
version = get_kb_item_or_exit("www/oracle/"+port+"/version", exit_code:1);
source = get_kb_item_or_exit("www/oracle/"+port+"/source", exit_code:1);

# Check if the remote server is affected. There is a patch in the CPU
# for each one of these versions of Oracle Application Server. No
# other versions can be patched by this CPU.
if (
  (version !~ "^9\.0\.4\.[1-3]") &&
  (version !~ "^10\.1\.2\.0\.[0-2]") &&
  (version != "10.1.2.1.0") &&
  (version != "10.1.3.0.0")
) exit(0, "The Oracle Application Server " + version + " install listening on port " + port + " is not affected.");

if (report_verbosity > 0)
{
  report =
    '\n  Version source    : ' + source +
    '\n  Installed version : ' + version +
    '\n';
  security_hole(port:port, extra:report);
}
else security_hole(port);
VendorProductVersionCPE
oraclehttp_servercpe:/a:oracle:http_server
Related for ORACLE_HTTP_SERVER_CPU_OCT_2006.NASL