Vulnerabilities > CVE-2011-1101 - Unspecified vulnerability in Citrix Licensing Administration Console 11.6

047910
CVSS 0.0 - NONE
Attack vector
UNKNOWN
Attack complexity
UNKNOWN
Privileges required
UNKNOWN
Confidentiality impact
UNKNOWN
Integrity impact
UNKNOWN
Availability impact
UNKNOWN
citrix
nessus

Summary

Multiple unspecified vulnerabilities in a third-party component of the Citrix Licensing Administration Console 11.6, formerly License Management Console, allow remote attackers to (1) access unauthorized "license administration functionality" or (2) cause a denial of service via unknown vectors.

Vulnerable Configurations

Part Description Count
Application
Citrix
1

Nessus

NASL familyWindows
NASL idCITRIX_LICENSING_ADMINISTRATION_11_10.NASL
descriptionThe version of Citrix License Server installed on the remote Windows host is potentially affected by multiple vulnerabilities in the administration component : - An unspecified cross-site scripting vulnerability exists. - An unspecified cross-site request forgery vulnerability exists. - A denial of service vulnerability exists that could allow an attacker with access to the web application to prevent access by other legitimate users.
last seen2020-06-01
modified2020-06-02
plugin id58563
published2012-04-02
reporterThis script is Copyright (C) 2012-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/58563
titleCitrix Licensing Server Administration Components Multiple Vulnerabilities
code
#
# (C) Tenable Network Security, Inc.
#

include('compat.inc');

if (description)
{
  script_id(58563);
  script_version("1.11");
  script_cvs_date("Date: 2018/11/15 20:50:26");

  script_cve_id("CVE-2011-1101");
  script_bugtraq_id(46529, 52522);

  script_name(english:"Citrix Licensing Server Administration Components Multiple Vulnerabilities");
  script_summary(english:"Checks version of Citrix Licensing Server");

  script_set_attribute(attribute:"synopsis", value:
"The remote Windows host contains an application that is affected by
multiple vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"The version of Citrix License Server installed on the remote Windows
host is potentially affected by multiple vulnerabilities in the
administration component :

  - An unspecified cross-site scripting vulnerability 
    exists.

  - An unspecified cross-site request forgery vulnerability
    exists.

  - A denial of service vulnerability exists that could 
    allow an attacker with access to the web application
    to prevent access by other legitimate users.");

  script_set_attribute(attribute:"see_also", value:"https://support.citrix.com/article/CTX128167");
  script_set_attribute(attribute:"see_also", value:"https://seclists.org/fulldisclosure/2012/Mar/159");
  script_set_attribute(attribute:"solution", value:"Upgrade to Citrix License Server 11.10 or later.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:S/C:N/I:N/A:P");
  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_cwe_id(20, 74, 79, 442, 629, 711, 712, 722, 725, 750, 751, 800, 801, 809, 811, 864, 900, 928, 931, 990);

  script_set_attribute(attribute:"vuln_publication_date", value:"2011/02/23");
  script_set_attribute(attribute:"patch_publication_date", value:"2012/03/10");
  script_set_attribute(attribute:"plugin_publication_date", value:"2012/04/02");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:citrix:licensing_administration_console");
  script_end_attributes();

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

  script_copyright(english:"This script is Copyright (C) 2012-2018 Tenable Network Security, Inc.");

  script_dependencies("citrix_licensing_installed.nasl");
  script_require_keys("SMB/Citrix License Server/Path", "SMB/Citrix License Server/Version", "SMB/Citrix License Server/Build");

  exit(0);
}

include("global_settings.inc");
include("misc_func.inc");

path = get_kb_item_or_exit('SMB/Citrix License Server/Path');
version = get_kb_item_or_exit('SMB/Citrix License Server/Version');
build = get_kb_item_or_exit('SMB/Citrix License Server/Build');

fix = '11.10.0.0';
if (report_paranoia < 2)
{
  kb = get_kb_item('SMB/Citrix License Server/LMC');
  if (
    isnull(kb) || 
    (kb == FALSE && ver_compare(ver:version, fix:fix) == -1)
  ) exit(0, 'Citrix License Server Administration Console is not installed with Citrix License Server.');
}

if (ver_compare(ver:version, fix:fix) == -1)
{
  port = get_kb_item('SMB/transport');
  set_kb_item(name:'www/'+port+'/XSS', value:TRUE);

  if (report_verbosity > 0)
  {
    report =
      '\n  Path              : ' + path +
      '\n  Installed version : ' + version + ' build ' + build +
      '\n  Fixed version     : ' + fix + '\n';
    security_warning(port:port, extra:report);
  }
  else security_warning(port);
  exit(0);
}
else exit(0, 'The Citrix License Server '+version+' build '+build+' install in '+path+' is not affected.');