Lucene search

K
openvasCopyright (C) 2019 Greenbone Networks GmbHOPENVAS:1361412562310143286
HistoryDec 20, 2019 - 12:00 a.m.

Intel Active Management Technology Multiple Vulnerabilities (INTEL-SA-00241)

2019-12-2000:00:00
Copyright (C) 2019 Greenbone Networks GmbH
plugins.openvas.org
59

Multiple potential security vulnerabilities in Intel Active Management
Technology (Intel AMT) may allow escalation of privilege, information disclosure, and/or denial of service.

# Copyright (C) 2019 Greenbone Networks GmbH
# Text descriptions are largely excerpted from the referenced
# advisory, and are Copyright (C) of the respective author(s)
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.

CPE = "cpe:/h:intel:active_management_technology";

if (description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.143286");
  script_version("2020-01-07T08:25:23+0000");
  script_tag(name:"last_modification", value:"2020-01-07 08:25:23 +0000 (Tue, 07 Jan 2020)");
  script_tag(name:"creation_date", value:"2019-12-20 03:55:32 +0000 (Fri, 20 Dec 2019)");
  script_tag(name:"cvss_base", value:"7.5");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");

  script_cve_id("CVE-2019-11132", "CVE-2019-11088", "CVE-2019-11131", "CVE-2019-0131", "CVE-2019-0166",
                "CVE-2019-11100");

  script_tag(name:"qod_type", value:"remote_banner");

  script_tag(name:"solution_type", value:"VendorFix");

  script_name("Intel Active Management Technology Multiple Vulnerabilities (INTEL-SA-00241)");

  script_category(ACT_GATHER_INFO);

  script_copyright("Copyright (C) 2019 Greenbone Networks GmbH");
  script_family("Web application abuses");
  script_dependencies("gb_intel_amt_webui_detect.nasl");
  script_mandatory_keys("intel_amt/installed");

  script_tag(name:"summary", value:"Multiple potential security vulnerabilities in Intel Active Management
  Technology (Intel AMT) may allow escalation of privilege, information disclosure, and/or denial of service.");

  script_tag(name:"insight", value:"Intel Active Management Technology is prone to multiple vulnerabilities:

  - Cross site scripting may allow a privileged user to potentially enable escalation of privilege via network
    access (CVE-2019-11132)

  - Insufficient input validation may allow an unauthenticated user to potentially enable escalation of privilege
    via adjacent access (CVE-2019-11088)

  - Logic issue may allow an unauthenticated user to potentially enable escalation of privilege via network access
    (CVE-2019-11131)

  - Insufficient input validation may allow an unauthenticated user to potentially enable denial of service or
    information disclosure via adjacent access (CVE-2019-0131)

  - Insufficient input validation may allow an unauthenticated user to potentially enable information disclosure
    via network access (CVE-2019-0166)

  - Insufficient input validation may allow an unauthenticated user to potentially enable information disclosure
    via physical access (CVE-2019-11100)");

  script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");

  script_tag(name:"affected", value:"Intel Active Management Technology 11.0 to 11.8.65, 11.10 to 11.11.65,
  11.20 to 11.22.65 and 12.0 to 12.0.35.");

  script_tag(name:"solution", value:"Upgrade to version 11.8.70, 11.11.70, 11.22.70, 12.0.45 or later.");

  script_xref(name:"URL", value:"https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00241.html");

  exit(0);
}

include("host_details.inc");
include("version_func.inc");

if (!port = get_app_port(cpe: CPE))
  exit(0);

if (!infos = get_app_version_and_location(cpe: CPE, port: port, exit_no_version: TRUE))
  exit(0);

version = infos["version"];
location = infos["location"];

if (version_in_range(version: version, test_version: "11.0", test_version2: "11.8.65")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "11.8.70", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

if (version_in_range(version: version, test_version: "11.10", test_version2: "11.11.65")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "11.11.70", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

if (version_in_range(version: version, test_version: "11.20", test_version2: "11.22.65")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "11.22.70", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

if (version_in_range(version: version, test_version: "12.0", test_version2: "12.0.35")) {
  report = report_fixed_ver(installed_version: version, fixed_version: "12.0.45", install_path: location);
  security_message(port: port, data: report);
  exit(0);
}

exit(99);
Related for OPENVAS:1361412562310143286