code | #TRUSTED 41c53370beb36f2c194f1569dc40d055152bd054afc7563a95877904ddbc5b3cced26a494750606b9d5144a8765f3d6ca004c13f87695c495b96328edee0fe19c37140816988a1d2c6fb3a39cdbd41cf0f3bbbe0d2a867af17d7c5738833f3189f70eeb8bc8b8af82cac8cbeb1b416e4bd42370e5e392fcddc80d19efed22ae372335ebab61b0d5cf90cbc7dff87f6ccae238ccfa5c9d15bd799fcc358101d610f4b83c76f6c018b24784fe956a09548b3595e9e0b5ded5c01e198fbe0826ac400aae853db316fda9137b70ed3cb4f6130fd4008088a8d1c9d399d4504fab35b97039f15194809dfbab7afc8a8a98f9659b7e626f239d89edc3f7057920693a44143647d5a0a6ad4bf0bef5e9b37ebdd17ed4381f5510e5bcd821185983a02769f1ef6d3e0c53be91538cd291e156877c85511a483856af0ada87f7f01aea0ec583ba6ef289651c7db5a4aa398d77f04fb743d1519fd8435e467d81ea223eefccc5e9d7d049d62d1c467a63daaf59b3790c45799a22315d293be6b12d3d7e13cf8f9d946154ef80f540a16b2311589a2755020ddc370545eedc4666f01d98d45af9d756cd3a08d2415a0be72ab4609e36c94acfaf06217fa79f1088bb43347a9b32562eaf55cd1977c8cc43dbc177e026a0ed1f9567adc6f05fe94b1fcb3217e6492608430d4a22a423cfb128de5eb5604a87080cc65c9045a8f6bf1ca370e0c
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(133403);
script_version("1.6");
script_set_attribute(attribute:"plugin_modification_date", value:"2020/04/24");
script_cve_id("CVE-2019-15963");
script_xref(name:"CISCO-BUG-ID", value:"CSCvr00922");
script_xref(name:"CISCO-SA", value:"cisco-sa-20200122-cuc-info-disclosure");
script_xref(name:"IAVA", value:"2020-A-0044-S");
script_name(english:"Cisco Unified Communications Manager Cross-Site Request Forgery Vulnerability (cisco-sa-20200122-cuc-info-disclosure)");
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 Unified Communications Manager could allow an authenticated,
remote attacker to view sensitive information in the web-based management interface of the affected software.
The vulnerability is due to insufficient protection of user-supplied input by the web-based management
interface of the affected service. An attacker could exploit this vulnerability by accessing the interface
and viewing restricted portions of the software configuration. A successful exploit could allow the attacker
to gain access to sensitive information or conduct further attacks.
Please see the included Cisco BIDs and Cisco Security Advisory for more information.
Note that Nessus has not tested for this issue but has instead relied only on the application's self-reported version
number.");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20200122-cuc-info-disclosure
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?91a1b9b9");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvr00922");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID CSCvr00922");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:S/C:P/I:N/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:N/S:U/C:L/I:N/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-15963");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_cwe_id(264);
script_set_attribute(attribute:"vuln_publication_date", value:"2020/01/22");
script_set_attribute(attribute:"patch_publication_date", value:"2020/01/22");
script_set_attribute(attribute:"plugin_publication_date", value:"2020/01/31");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/o:cisco:unified_communications_manager");
script_set_attribute(attribute:"stig_severity", value:"I");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CISCO");
script_copyright(english:"This script is Copyright (C) 2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("cisco_ucm_detect.nbin");
script_require_keys("Host/Cisco/CUCM/Version", "Host/Cisco/CUCM/Version_Display");
exit(0);
}
include('audit.inc');
include('cisco_workarounds.inc');
include('ccf.inc');
product_info = cisco::get_product_info(name:'Cisco Unified Communications Manager');
vuln_ranges = [
{'min_ver' : '0', 'fix_ver' : '10.5.2.21901.0'},
{'min_ver' : '11.5', 'fix_ver' : '11.5.1.17900.52'},
{'min_ver' : '11.5.2', 'fix_ver' :'12.0.1.23900.10'},
{'min_ver' : '12.1', 'fix_ver' : '12.1.1.12000.55'},
{'min_ver' : '12.5', 'fix_ver' : '12.5.1.11900.147'}
];
reporting = make_array(
'port' , 0,
'severity' , SECURITY_WARNING,
'version' , product_info['display_version'],
'bug_id' , 'CSCvr00922',
'disable_caveat', TRUE
);
cisco::check_and_report(
product_info:product_info,
reporting:reporting,
vuln_ranges:vuln_ranges
);
|