Vulnerabilities > CVE-2015-3650 - Improper Access Control vulnerability in VMWare Horizon View Client, Player and Workstation

047910
CVSS 7.2 - HIGH
Attack vector
LOCAL
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
COMPLETE
Integrity impact
COMPLETE
Availability impact
COMPLETE
local
low complexity
vmware
CWE-284
nessus

Summary

vmware-vmx.exe in VMware Workstation 7.x through 10.x before 10.0.7 and 11.x before 11.1.1, VMware Player 5.x and 6.x before 6.0.7 and 7.x before 7.1.1, and VMware Horizon Client 5.x local-mode before 5.4.2 on Windows does not provide a valid DACL pointer during the setup of the vprintproxy.exe process, which allows host OS users to gain host OS privileges by injecting a thread.

Common Weakness Enumeration (CWE)

Common Attack Pattern Enumeration and Classification (CAPEC)

  • Embedding Scripts within Scripts
    An attack of this type exploits a programs' vulnerabilities that are brought on by allowing remote hosts to execute scripts. The attacker leverages this capability to execute scripts to execute his/her own script by embedding it within other scripts that the target software is likely to execute. The attacker must have the ability to inject script into script that is likely to be executed. If this is done, then the attacker can potentially launch a variety of probes and attacks against the web server's local environment, in many cases the so-called DMZ, back end resources the web server can communicate with, and other hosts. With the proliferation of intermediaries, such as Web App Firewalls, network devices, and even printers having JVMs and Web servers, there are many locales where an attacker can inject malicious scripts. Since this attack pattern defines scripts within scripts, there are likely privileges to execute said attack on the host. Of course, these attacks are not solely limited to the server side, client side scripts like Ajax and client side JavaScript can contain malicious scripts as well. In general all that is required is for there to be sufficient privileges to execute a script, but not protected against writing.
  • Signature Spoofing by Key Theft
    An attacker obtains an authoritative or reputable signer's private signature key by theft and then uses this key to forge signatures from the original signer to mislead a victim into performing actions that benefit the attacker.

Nessus

  • NASL familyWindows
    NASL idVMWARE_PLAYER_PRIV_ESC_VMSA_2015_0005.NASL
    descriptionThe version of VMware Player installed on the remote host is 6.x prior to 6.0.7 or 7.x prior to 7.1.1. It is, therefore, affected by a privilege escalation vulnerability due to a failure to provide a valid discretionary access control list (DACL) pointer for the printproxy.exe process. A local attacker, using thread injection, can exploit this to gain elevated privileges or execute arbitrary code.
    last seen2020-06-01
    modified2020-06-02
    plugin id84805
    published2015-07-16
    reporterThis script is Copyright (C) 2015-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/84805
    titleVMware Player 6.x < 6.0.7 / 7.x < 7.1.1 DACL Privilege Escalation (VMSA-2015-0005)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(84805);
      script_version("1.7");
      script_cvs_date("Date: 2018/11/15 20:50:29");
    
      script_cve_id("CVE-2015-3650");
      script_bugtraq_id(75686);
      script_xref(name:"VMSA", value:"2015-0005");
    
      script_name(english:"VMware Player 6.x < 6.0.7 / 7.x < 7.1.1 DACL Privilege Escalation (VMSA-2015-0005)");
      script_summary(english:"Checks the VMware Player version.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The virtualization application installed on the remote host is
    affected by a privilege escalation vulnerability.");
      script_set_attribute(attribute:"description", value:
    "The version of VMware Player installed on the remote host is 6.x prior
    to 6.0.7 or 7.x prior to 7.1.1. It is, therefore, affected by a
    privilege escalation vulnerability due to a failure to provide a valid
    discretionary access control list (DACL) pointer for the
    printproxy.exe process. A local attacker, using thread injection, can
    exploit this to gain elevated privileges or execute arbitrary code.");
      script_set_attribute(attribute:"see_also", value:"https://www.vmware.com/security/advisories/VMSA-2015-0005.html");
      script_set_attribute(attribute:"solution", value:
    "Upgrade to VMware Player 6.0.7 / 7.1.1 or later.");
      script_set_cvss_base_vector("CVSS2#AV:L/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:"vuln_publication_date", value:"2015/07/09");
      script_set_attribute(attribute:"patch_publication_date", value:"2015/07/09");
      script_set_attribute(attribute:"plugin_publication_date", value:"2015/07/16");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"cpe:/a:vmware:player");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Windows");
      script_copyright(english:"This script is Copyright (C) 2015-2018 Tenable Network Security, Inc.");
    
      script_dependencies("vmware_player_detect.nasl");
      script_require_keys("SMB/Registry/Enumerated", "VMware/Player/Path", "VMware/Player/Version");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("misc_func.inc");
    
    get_kb_item_or_exit("SMB/Registry/Enumerated");
    
    version = get_kb_item_or_exit("VMware/Player/Version");
    path = get_kb_item_or_exit("VMware/Player/Path");
    fix = '';
    
    if (version =~ "^6\.")
      fix = '6.0.7';
    
    if (version =~ "^7\.")
      fix = '7.1.1';
    
    if (!empty(fix) && ver_compare(ver:version, fix:fix, strict:FALSE) == -1)
    {
      port = get_kb_item("SMB/transport");
      if (!port) port = 445;
    
      if (report_verbosity > 0)
      {
        report +=
          '\n  Path              : ' + path +
          '\n  Installed version : ' + version +
          '\n  Fixed version     : ' + fix +
          '\n';
        security_hole(port:port, extra:report);
      }
      else security_hole(port);
    }
    else audit(AUDIT_INST_PATH_NOT_VULN, "VMware Player", version, path);
    
  • NASL familyWindows
    NASL idVMWARE_WORKSTATION_PRIV_ESC_VMSA_2015_0005.NASL
    descriptionThe version of VMware Workstation installed on the remote host is 10.x prior to 10.0.7 or 11.x prior to 11.1.1. It is, therefore, affected by a privilege escalation vulnerability due to a failure to provide a valid discretionary access control list (DACL) pointer for the printproxy.exe process. A local attacker, using thread injection, can exploit this to gain elevated privileges or execute arbitrary code.
    last seen2020-06-01
    modified2020-06-02
    plugin id84806
    published2015-07-16
    reporterThis script is Copyright (C) 2015-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/84806
    titleVMware Workstation 10.x < 10.0.7 / 11.x < 11.1.1 DACL Privilege Escalation (VMSA-2015-0005)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(84806);
      script_version("1.7");
      script_cvs_date("Date: 2018/11/15 20:50:29");
    
      script_cve_id("CVE-2015-3650");
      script_bugtraq_id(75686);
      script_xref(name:"VMSA", value:"2015-0005");
    
      script_name(english:"VMware Workstation 10.x < 10.0.7 / 11.x < 11.1.1 DACL Privilege Escalation (VMSA-2015-0005)");
      script_summary(english:"Checks the VMware Workstation version.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The virtualization application installed on the remote host is
    affected by a privilege escalation vulnerability.");
      script_set_attribute(attribute:"description", value:
    "The version of VMware Workstation installed on the remote host is 10.x
    prior to 10.0.7 or 11.x prior to 11.1.1. It is, therefore, affected by
    a privilege escalation vulnerability due to a failure to provide a
    valid discretionary access control list (DACL) pointer for the
    printproxy.exe process. A local attacker, using thread injection, can
    exploit this to gain elevated privileges or execute arbitrary code.");
      script_set_attribute(attribute:"see_also", value:"https://www.vmware.com/security/advisories/VMSA-2015-0005.html");
      script_set_attribute(attribute:"solution", value:
    "Upgrade to VMware Workstation version 10.0.7 / 11.1.1 or later.");
      script_set_cvss_base_vector("CVSS2#AV:L/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:"vuln_publication_date", value:"2015/07/09");
      script_set_attribute(attribute:"patch_publication_date", value:"2015/07/09");
      script_set_attribute(attribute:"plugin_publication_date", value:"2015/07/16");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"cpe:/a:vmware:workstation");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Windows");
    
      script_copyright(english:"This script is Copyright (C) 2015-2018 Tenable Network Security, Inc.");
    
      script_dependencies("vmware_workstation_detect.nasl");
      script_require_keys("SMB/Registry/Enumerated", "VMware/Workstation/Version", "VMware/Workstation/Path");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("misc_func.inc");
    
    get_kb_item_or_exit("SMB/Registry/Enumerated");
    
    appname = 'VMware Workstation';
    
    version = get_kb_item("VMware/Workstation/Version");
    if (isnull(version)) audit(AUDIT_NOT_INST, appname);
    
    path = get_kb_item_or_exit("VMware/Workstation/Path");
    
    fix = '';
    
    if (version =~ "^10\.")
      fix  = "10.0.7";
    
    if (version =~ "^11\.")
      fix  = "11.1.1";
    
    if (!empty(fix) && ver_compare(ver:version, fix:fix, strict:FALSE) == -1)
    {
      port = get_kb_item("SMB/transport");
      if (!port) port = 445;
    
      if (report_verbosity >0)
      {
        report =
          '\n  Path              : ' + path +
          '\n  Installed version : ' + version +
          '\n  Fixed version     : ' + fix + '\n';
        security_hole(port:port, extra:report);
      }
      else security_hole(port);
      exit(0);
    }
    else audit(AUDIT_INST_PATH_NOT_VULN, appname, version, path);
    
  • NASL familyWindows
    NASL idVMWARE_HORIZON_VIEW_CLIENT_VMSA_2015_0005.NASL
    descriptionThe version of VMware Horizon View Client installed on the remote host is 5.x (with local mode) prior to 5.4.2. It is, therefore, affected by a privilege escalation vulnerability due to a failure to provide a valid discretionary access control list (DACL) pointer for the printproxy.exe process. A local attacker, using thread injection, can exploit this to gain elevated privileges or execute arbitrary code.
    last seen2020-06-01
    modified2020-06-02
    plugin id84804
    published2015-07-16
    reporterThis script is Copyright (C) 2015-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/84804
    titleVMware Horizon View Client 5.x < 5.4.2 DACL Privilege Escalation (VMSA-2015-0005)
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(84804);
      script_version("1.4");
      script_cvs_date("Date: 2018/11/15 20:50:29");
    
      script_cve_id("CVE-2015-3650");
      script_bugtraq_id(75686);
      script_xref(name:"VMSA", value:"2015-0005");
    
      script_name(english:"VMware Horizon View Client 5.x < 5.4.2 DACL Privilege Escalation (VMSA-2015-0005)");
      script_summary(english:"Checks the VMware Horizon View Client version.");
    
      script_set_attribute(attribute:"synopsis", value:
    "The virtualization application installed on the remote host is
    affected by a privilege escalation vulnerability.");
      script_set_attribute(attribute:"description", value:
    "The version of VMware Horizon View Client installed on the remote host
    is 5.x (with local mode) prior to 5.4.2. It is, therefore, affected by
    a privilege escalation vulnerability due to a failure to provide a
    valid discretionary access control list (DACL) pointer for the
    printproxy.exe process. A local attacker, using thread injection, can
    exploit this to gain elevated privileges or execute arbitrary code.");
      script_set_attribute(attribute:"see_also", value:"https://www.vmware.com/security/advisories/VMSA-2015-0005.html");
      script_set_attribute(attribute:"solution", value:
    "Upgrade to VMware Horizon View Client 5.4.2 (with local mode) or
    later.");
      script_set_cvss_base_vector("CVSS2#AV:L/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:"vuln_publication_date", value:"2015/07/09");
      script_set_attribute(attribute:"patch_publication_date", value:"2015/07/09");
      script_set_attribute(attribute:"plugin_publication_date", value:"2015/07/16");
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"cpe:/a:vmware:horizon_view_client");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Windows");
    
      script_copyright(english:"This script is Copyright (C) 2015-2018 Tenable Network Security, Inc.");
    
      script_dependencies("vmware_horizon_view_client_installed.nbin");
      script_require_keys("SMB/Registry/Enumerated", "installed_sw/VMware Horizon View Client");
    
      exit(0);
    }
    
    include("audit.inc");
    include("global_settings.inc");
    include("misc_func.inc");
    include("install_func.inc");
    
    get_kb_item_or_exit("SMB/Registry/Enumerated");
    
    appname = 'VMware Horizon View Client';
    
    install = get_single_install(app_name:appname, exit_if_unknown_ver:TRUE);
    
    version    = install["version"];
    path       = install["path"];
    local_mode = install["Local Mode"];
    
    if (local_mode == "yes")
      appname += " (with local mode)";
    
    port = get_kb_item("SMB/transport");
    if (!port) port = 445;
    
    fix = '';
    
    if (version =~ "^5(\.|$)" && local_mode == "yes")
      fix = "5.4.2";
    
    if (!empty(fix) && ver_compare(ver:version, fix:fix, strict:FALSE) < 0)
    {
      if (report_verbosity > 0)
      {
        report =
          '\n  Product           : ' + appname +
          '\n  Path              : ' + path +
          '\n  Installed version : ' + version+
          '\n  Fixed version     : ' + fix + '\n';
    
        security_hole(port:port, extra:report);
      }
      else security_hole(port);
    }
    else audit(AUDIT_INST_PATH_NOT_VULN, appname, version, path);