code | #TRUSTED 02925dd9bfc4844e5642b5b504502e524351745dff5e71a256a44193ac684df11fc6af047fa43292c4f6d50f3ded22ce6467e391a326d281990d61571558d23a5f6ffb71632e41e56275bb86318b2a823ddf890c523bfa8f784b75e49d5b0b8c6ab991b549b113bd9801e0f813464eac18c1bc43d1bbf848a9a52b48335183fa4a58140be735adb94af753da07dbee78d420e413cc1b3b06118cba308fcecdd73590c0af2808f3fd29aae76b98f4993744f6f73836c2894b9285b6c7b9edcaad02bd80218d80f90a743335f15f33fb2c2ebe230792148810250f2b961820004f2e6bc249db5ad3ac9aac03c492921a5054c0fbc3ee22a8ba280012399a8c25e910ca60e32d36fcaf35554692db04f73c4a74e8c7826a49bc2b0c793dd52e1bdaf286bdecf3eb654b5c1572f7e962351f9d4236998974c5234ec8bdec77211960533a981be00935d1c6a198cbfed574b3f1c3ca89cfd7f73798d7a119499475a1ae498e9ad519847e6d625bc7f3bcfc1c4fb638376cd4c30a658eb38af9656853cb2a9d2deaf67b3a04398a6f035c422e2827f8e483b3d89fbc139dbc46d5a80fea47e3c8be913a83e49031a03cdce574fb083b94c9e9e3bc4368ae6989c3ca94dcea494687bf0657c9393d52a84683f7367075e5d619a28ab28237f921a688f142fc5076b39ef28927d9b91a31636aeb7cc5595499984523fb0083ee28714437
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(126105);
script_version("1.6");
script_cvs_date("Date: 2020/02/14");
script_cve_id("CVE-2019-1719");
script_xref(name:"CISCO-BUG-ID", value:"CSCvo10441");
script_xref(name:"CISCO-SA", value:"cisco-sa-20190417-ise-xss");
script_name(english:"Cisco Identity Services Engine Cross-Site Scripting Vulnerability (cisco-sa-20190417-ise-xss)");
script_summary(english:"Checks the version of Cisco Identity Services Engine Software");
script_set_attribute(attribute:"synopsis", value:
"The remote device is missing a vendor-supplied security patch");
script_set_attribute(attribute:"description", value:
"According to its self-reported version, Cisco Identity Services Engine
Software is affected by a cross site scripting vulnerability.
A vulnerability in the web-based guest portal of Cisco Identity
Services Engine (ISE) could allow an authenticated, remote attacker to
conduct a cross-site scripting (XSS) attack against a user of the
web-based management interface.The vulnerability is due to
insufficient validation of user-supplied input that is processed by
the web-based interface. An attacker could exploit this vulnerability
by persuading a user of the interface to click a crafted link. A
successful exploit could allow the attacker to execute arbitrary
script code in the context of the interface or access sensitive
browser-based information.
Please see the included Cisco BIDs and Cisco Security Advisory for
more information");
# http://tools.cisco.com/security/center/content/CiscoAppliedMitigationBulletin/cisco-amb-20060922-understanding-xss
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?1596bcb6");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20190417-ise-xss
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?4faa9a01");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvo10441");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID
CSCvo10441");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:S/C:N/I:P/A:N");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N");
script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
script_set_attribute(attribute:"cvss_score_source", value:"CVE-2019-1719");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_cwe_id(79);
script_set_attribute(attribute:"vuln_publication_date", value:"2019/04/17");
script_set_attribute(attribute:"patch_publication_date", value:"2019/04/17");
script_set_attribute(attribute:"plugin_publication_date", value:"2019/06/21");
script_set_attribute(attribute:"potential_vulnerability", value:"true");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/o:cisco:identity_services_engine");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CISCO");
script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("cisco_ise_detect.nbin");
script_require_keys("Host/Cisco/ISE/version", "Settings/ParanoidReport");
exit(0);
}
include("audit.inc");
include("cisco_workarounds.inc");
include("ccf.inc");
product_info = cisco::get_product_info(name:"Cisco Identity Services Engine Software");
if (report_paranoia < 2) audit(AUDIT_PARANOID);
vuln_ranges = [{ 'min_ver' : '2.1.0', 'fix_ver' : '2.2.0.470' }];
workarounds = make_list(CISCO_WORKAROUNDS['no_workaround']);
workaround_params = make_list();
# ISE version doesn't change when patches are installed, so even if
# they are on the proper version we have to double check patch level
required_patch = '';
if (product_info['version'] =~ "^2\.[12]\.0($|[^0-9])") required_patch = '14';
reporting = make_array(
'port' , 0,
'severity' , SECURITY_NOTE,
'version' , product_info['version'],
'bug_id' , "CSCvo10441",
'fix' , 'See advisory',
'xss' , TRUE
);
# uses required_patch parameters set by above version ranges
cisco::check_and_report(product_info:product_info, reporting:reporting, workarounds:workarounds, workaround_params:workaround_params, vuln_ranges:vuln_ranges, required_patch:required_patch);
|