description | According to its self-reported version number, the Oracle Primavera Unifier installation running on the remote web server is 16.x prior to 16.2.8.1. It is, therefore, affected by the following vulnerabilities : - A unspecified flaw exists in the Platform component that allows an authenticated, remote attacker to impact confidentiality and integrity. (CVE-2017-10149) - A unspecified flaw exists in the Platform component that allows an authenticated, remote attacker to impact integrity. (CVE-2017-10150) Note that Nessus has not tested for these issues but has instead relied only on the application |
code | #
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(101901);
script_version("1.6");
script_cvs_date("Date: 2018/07/25 16:19:22");
script_cve_id(
"CVE-2017-10149",
"CVE-2017-10150"
);
script_bugtraq_id(
99780,
99800
);
script_name(english:"Oracle Primavera Unifier Multiple Vulnerabilities (July 2017 CPU)");
script_summary(english:"Checks the version of Oracle Primavera Unifier.");
script_set_attribute(attribute:"synopsis", value:
"An application running on the remote web server is affected by
multiple vulnerabilities.");
script_set_attribute(attribute:"description", value:
"According to its self-reported version number, the Oracle Primavera
Unifier installation running on the remote web server is 16.x prior to
16.2.8.1. It is, therefore, affected by the following
vulnerabilities :
- A unspecified flaw exists in the Platform component that
allows an authenticated, remote attacker to impact
confidentiality and integrity. (CVE-2017-10149)
- A unspecified flaw exists in the Platform component that
allows an authenticated, remote attacker to impact
integrity. (CVE-2017-10150)
Note that Nessus has not tested for these issues but has instead
relied only on the application's self-reported version number.");
# http://www.oracle.com/technetwork/security-advisory/cpujul2017-3236622.html
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?76f5def7");
script_set_attribute(attribute:"solution", value:
"Upgrade to Oracle Primavera Unifier version 16.2.8.1 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:S/C:P/I:P/A:N");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N");
script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2017/07/18");
script_set_attribute(attribute:"patch_publication_date", value:"2017/07/18");
script_set_attribute(attribute:"plugin_publication_date", value:"2017/07/21");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"x-cpe:/a:oracle:primavera_unifier");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2017-2018 Tenable Network Security, Inc.");
script_dependencies("oracle_primavera_unifier.nbin");
script_require_keys("installed_sw/Oracle Primavera Unifier", "www/weblogic");
script_require_ports("Services/www", 8002);
exit(0);
}
include("http.inc");
include("vcf.inc");
get_install_count(app_name:"Oracle Primavera Unifier", exit_if_zero:TRUE);
port = get_http_port(default:8002);
get_kb_item_or_exit("www/weblogic/" + port + "/installed");
app_info = vcf::get_app_info(app:"Oracle Primavera Unifier", port:port);
vcf::check_granularity(app_info:app_info, sig_segments:3);
constraints = [
{ "min_version" : "16.0.0.0", "fixed_version" : "16.2.8.1" }
];
vcf::check_version_and_report(app_info:app_info, constraints:constraints, severity:SECURITY_WARNING);
|