Lucene search
K

Cisco Wireless Control System Installed (Windows)

🗓️ 30 Jul 2013 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 21 Views

Cisco Wireless Control System (WCS) installed on Windows. Used as the management component for Cisco Unified Wireless Network

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

include("compat.inc");

if (description)
{
  script_id(69131);
  script_version("1.9");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/10/10");

  script_name(english:"Cisco Wireless Control System Installed (Windows)");
  script_summary(english:"Looks for WCS files");

  script_set_attribute(
    attribute:"synopsis",
    value:
"A wireless management application is installed on the remote Windows
host."
  );
  script_set_attribute(
    attribute:"description",
    value:
"Cisco Wireless Control System (WCS) is installed on the remote host.
WCS is used as the management component for Cisco Unified Wireless
Network."
  );
  script_set_attribute(attribute:"see_also", value:"https://www.cisco.com/c/en/us/products/wireless/wireless-control-system/index.html");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2013/07/30");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:cisco:wireless_control_system_software");
  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) 2013-2022 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("smb_func.inc");
include("smb_hotfixes.inc");
include("smb_hotfixes_fcheck.inc");
include("smb_reg_query.inc");
include("misc_func.inc");
include("install_func.inc");

app = 'Cisco WCS';

display_names = get_kb_list_or_exit('SMB/Registry/HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Uninstall/*/DisplayName');
uninstall_keys = make_list();

# first check the Uninstall keys (stored in the KB) to see if looks like WCS is installed
foreach key (keys(display_names))
{
  name = display_names[key];
  if (name !~ 'Cisco Wireless Control System') continue;

  uninstall_key = key - 'SMB/Registry/HKLM/' - 'DisplayName';
  uninstall_key = str_replace(string:uninstall_key, find:'/', replace:"\");
  uninstall_keys = make_list(uninstall_keys, uninstall_key);
}

if (max_index(uninstall_keys) == 0)
  audit(AUDIT_NOT_INST, app);

# If it looks like it's installed, try to get the path and version from the registry
registry_init();
hklm = registry_hive_connect(hive:HKEY_LOCAL_MACHINE, exit_on_fail:TRUE);

paths = make_list();
foreach key (uninstall_keys)
{
  path = get_registry_value(handle:hklm, item:key + "InstallLocation");
  if (!isnull(path))
    paths = make_list(paths, path);
}
RegCloseKey(handle:hklm);

if (max_index(paths) == 0)
{
  close_registry();
  audit(AUDIT_UNINST, app);
}

port   = kb_smb_transport();
login  = kb_smb_login();
pass   = kb_smb_password();
domain = kb_smb_domain();

install_count = 0;

foreach path(paths)
{
  share = hotfix_path2share(path:path);
  NetUseDel(close:FALSE);
  rc = NetUseAdd(login:login, password:pass, domain:domain, share:share);
  if (rc != 1)
  {
    NetUseDel();
    audit(AUDIT_SHARE_FAIL, share);
  }

  if (path[strlen(path) - 1] != "\") # add a trailing slash if necessary
    path += "\";
  props_file = substr(path, 2) + "webnms\classes\com\cisco\common\ha\config\ha.properties"; # strip out the leading drive name
  fh = CreateFile(
    file:props_file,
    desired_access:GENERIC_READ,
    file_attributes:FILE_ATTRIBUTE_NORMAL,
    share_mode:FILE_SHARE_READ,
    create_disposition:OPEN_EXISTING
  );

  if (!isnull(fh))
  {
    properties = NULL;
    length = GetFileSize(handle:fh);
    if (length > 1024) length = 1024;  # sanity check - max size of 1k (it's a few hundred bytes in WCS 7.0.164.0)
    properties = ReadFile(handle:fh, offset:0, length:length);
    CloseFile(handle:fh);
  }

  match = eregmatch(string:properties, pattern:"version=([\d.]+)");
  if (isnull(match)) continue;

  version = match[1];
  set_kb_item(name:'SMB/cisco_wcs/version', value:version);
  set_kb_item(name:'SMB/cisco_wcs/' + version + '/path', value:path);
  register_install(
    app_name:app,
    vendor : 'Cisco',
    product : 'Wireless Control System Software',
    path:path,
    version:version,
    cpe:"cpe:/a:cisco:wireless_control_system_software");

  install_count += 1;
}

NetUseDel();

if (!install_count)
  audit(AUDIT_UNINST, app);

report_installs(app_name:app, port:port);

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

10 Oct 2022 00:00Current
5.5Medium risk
Vulners AI Score5.5
21