Lucene search

K
openvasCopyright (C) 2016 Greenbone AGOPENVAS:1361412562310808241
HistoryJul 04, 2016 - 12:00 a.m.

phpMyAdmin Multiple Vulnerabilities (PMASA-2016-24, PMASA-2016-26, PMASA-2016-27, PMASA-2016-28) - Windows

2016-07-0400:00:00
Copyright (C) 2016 Greenbone AG
plugins.openvas.org
32

6.1 Medium

AI Score

Confidence

Low

0.919 High

EPSS

Percentile

98.9%

phpMyAdmin is prone to multiple vulnerabilities.

# SPDX-FileCopyrightText: 2016 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

CPE = "cpe:/a:phpmyadmin:phpmyadmin";

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.808241");
  script_version("2024-02-13T05:06:26+0000");
  script_cve_id("CVE-2016-5739", "CVE-2016-5733", "CVE-2016-5734", "CVE-2016-5731",
                "CVE-2016-5732", "CVE-2016-5730", "CVE-2016-5706", "CVE-2016-5704",
                "CVE-2016-5705", "CVE-2016-5703", "CVE-2016-5702");
  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_tag(name:"last_modification", value:"2024-02-13 05:06:26 +0000 (Tue, 13 Feb 2024)");
  script_tag(name:"severity_vector", value:"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
  script_tag(name:"severity_origin", value:"NVD");
  script_tag(name:"severity_date", value:"2017-07-01 01:29:00 +0000 (Sat, 01 Jul 2017)");
  script_tag(name:"creation_date", value:"2016-07-04 14:45:45 +0530 (Mon, 04 Jul 2016)");
  script_tag(name:"qod_type", value:"remote_banner");
  script_name("phpMyAdmin Multiple Vulnerabilities (PMASA-2016-24, PMASA-2016-26, PMASA-2016-27, PMASA-2016-28) - Windows");

  script_tag(name:"summary", value:"phpMyAdmin is prone to multiple vulnerabilities.");

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

  script_tag(name:"insight", value:"Multiple flaws are due to:

  - The Transformation implementation does not use the no-referrer Content
    Security Policy (CSP) protection mechanism.

  - Multiple input validation errors.

  - An improper selection of delimiters to prevent use of the preg_replace
    e (aka eval) modifier.

  - An improper handling of error messages.

  - An insufficient validation of 'scripts' parameter in 'js/get_scripts.js.php'
    script.

  - An improper sanitization of URI.");

  script_tag(name:"impact", value:"Successful exploitation will allow remote
  attackers to inject arbitrary web script or HTML or arbitrary PHP code via
  crafted parameters, execute arbitrary SQL commands, cause a denial of
  service, obtain sensitive information and conduct CSRF attacks.");

  script_tag(name:"affected", value:"phpMyAdmin versions 4.0.x before 4.0.10.16,
  4.4.x before 4.4.15.7, and 4.6.x before 4.6.3 on Windows.");

  script_tag(name:"solution", value:"Update to version 4.0.10.16, 4.4.15.7, 4.6.3 or later.");

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

  script_xref(name:"URL", value:"https://www.phpmyadmin.net/security/PMASA-2016-28");
  script_xref(name:"URL", value:"https://www.phpmyadmin.net/security/PMASA-2016-27");
  script_xref(name:"URL", value:"https://www.phpmyadmin.net/security/PMASA-2016-26");
  script_xref(name:"URL", value:"https://www.phpmyadmin.net/security/PMASA-2016-24");

  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2016 Greenbone AG");
  script_family("Web application abuses");
  script_dependencies("gb_phpmyadmin_http_detect.nasl", "os_detection.nasl");
  script_mandatory_keys("phpMyAdmin/installed", "Host/runs_windows");

  exit(0);
}

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

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

if(!vers = get_app_version(cpe:CPE, port:port))
  exit(0);

if(vers =~ "^4\.0")
{
  if(version_is_less(version:vers, test_version:"4.0.10.16"))
  {
    fix = "4.0.10.16";
    VULN = TRUE;
  }
}

else if(vers =~ "^4\.4")
{
  if(version_is_less(version:vers, test_version:"4.4.15.7"))
  {
    fix = "4.4.15.7";
    VULN = TRUE;
  }
}

else if(vers =~ "^4\.6")
{
  if(version_is_less(version:vers, test_version:"4.6.3"))
  {
    fix = "4.6.3";
    VULN = TRUE;
  }
}

if(VULN)
{
  report = report_fixed_ver(installed_version:vers, fixed_version:fix);
  security_message(port:port, data:report);
  exit(0);
}