Lucene search
K

VMware ACE detection (Windows)

🗓️ 02 Apr 2008 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 15 Views

VMware ACE, an OS virtualization management solution, is installed on the remote host. Check version of VMware ACE installed

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

include("compat.inc");

if (description)
{
  script_id(31727);
  script_version("1.11");
  script_set_attribute(attribute:"plugin_modification_date", value:"2023/02/06");

  script_name(english:"VMware ACE detection (Windows)");
  script_summary(english:"Checks version of VMware ACE installed"); 
 
 script_set_attribute(attribute:"synopsis", value:
"An OS Virtualization management application is installed on the remote 
host." );
 script_set_attribute(attribute:"description", value:
"VMware ACE, an OS virtualization management solution, is installed 
on the remote host." );
 script_set_attribute(attribute:"see_also", value:"https://www.vmware.com/products/ace.html" );
 script_set_attribute(attribute:"risk_factor", value:"None" );
 script_set_attribute(attribute:"solution", value:"n/a" );
 script_set_attribute(attribute:"plugin_publication_date", value: "2008/04/02");
 script_set_attribute(attribute:"plugin_type", value:"local");
 script_set_attribute(attribute:"cpe",value:"cpe:/a:vmware:ace");
 script_set_attribute(attribute:"asset_inventory", value:"True");
 script_set_attribute(attribute:"asset_inventory_category", value:"software_enumeration");
 script_set_attribute(attribute:"agent", value:"windows");
 script_end_attributes();

 
  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows");

  script_copyright(english:"This script is Copyright (C) 2008-2023 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("smb_hotfixes.nasl");
  script_require_keys("SMB/Registry/Enumerated");
  script_require_ports(139, 445);

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("install_func.inc");
include("smb_func.inc");

port = kb_smb_transport();

# Figure out where the installer recorded information about it.

list = get_kb_list("SMB/Registry/HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/*/DisplayName");
if (isnull(list)) exit(0);

installstring = NULL;
foreach name (keys(list))
{
  prod = list[name];
  if (prod && "VMware ACE Management Server" >< prod)
  {
   installstring = ereg_replace(pattern:"^(SMB\/Registry\/HKLM\/SOFTWARE\/Microsoft\/Windows\/CurrentVersion\/Uninstall\/.+)\/DisplayName$", replace:"\1", string:name);
   break;
  }
}

if(isnull(installstring)) exit(0);

ace_version = NULL;
ace_version = get_kb_item(string(installstring,"/","DisplayVersion"));

if(!isnull(ace_version))
{
 set_kb_item(name:"VMware/ACE/Version", value:ace_version);

 if(report_verbosity)
 {
  report = string(
          "VMware ACE version ", ace_version, " is installed on the remote host.",
          "\n"
    );
   security_note(port:port, extra:report);  
 }
 else
  security_note(port:port);
}

app = "VMware ACE";
path = "unknown";
cpe = "cpe:/a:vmware:ace";

register_install(
  vendor   : "VMware",
  product  : "ACE",
  app_name : app,
  version  : ace_version,
  path     : path,
  cpe      : cpe
);

exit(0);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

06 Feb 2023 00:00Current
5.5Medium risk
Vulners AI Score5.5
15