code | #TRUSTED 2c62d7a0b8f915aeac920364ad1a56a684efe9f3d6f14b21a05ed72941a828c9e18498394290ea010b3020f7aafd6acc9ddafe1ec8e5556cbd9f769cc96606aefc4ac88fedd174506b556727d06d190f42f8035f6c427f40a84ed95e70bbeb6874f510ac49a1bf772bcd0bb08680955dfe7bbdac1bc739d8003496b2981492b4829b253b3ca041adc6b092f0b988061d3089ff3c7972e584e178dceafc34bdb88f88f7e15afeff3312f84ed596dd26bd41fb127e59f4a46ce81b1ad7f3ef2e3364f7076c9cbb22e02233455c6afb3ea9031210402b8a3c15c3d306993230cb9da298e4c19f402d365c75cb5b38a4ed9b2cbbbf84b4a523745d594ef0010783b9aa950f18e711b827d7527ef62f412fc7a4870b5b19e6bba6fa19cccf5a801d8310bfa941a1613a818aee58df2aa11c63cf85a7aeaa72f09472530620850c0bd761c4e1a2286640cebe40c0c8ac79aef3e76c9aa0aa947bddaa1a6306c7484102def92576579fd759df29738a7ab4fd82a3bb6ffdd3650a3f3fb9bfa3bed7bcee260e341646b647acbf9515618ef5ab7d64a6c58bf1684ee39e0f08fddba5ffda7e28ee6591fd22fc8b325e715dfec8df8cd68d8fe04b4750d0ae6ce5867322c7ed1b6880ed304276193e09800394437f7d6c005b0d3918ad4cd87b99effdf3b98972f347b77ce917e78bd1f0c5f1dad0feb3003bbbeb9aed79cb6a2cbbe3de63
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(135859);
script_version("1.8");
script_set_attribute(attribute:"plugin_modification_date", value:"2020/04/29");
script_cve_id("CVE-2020-3177");
script_xref(name:"CISCO-BUG-ID", value:"CSCvq58268");
script_xref(name:"CISCO-BUG-ID", value:"CSCvt33058");
script_xref(name:"CISCO-SA", value:"cisco-sa-cucm-taps-path-trav-pfsFO93r");
script_xref(name:"IAVA", value:"2020-A-0172");
script_name(english:"Cisco Unified Communications Manager Path Traversal (cisco-sa-cucm-taps-path-trav-pfsFO93r)");
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 is affected by a path traversal
vulnerability in the Tool for Auto-Registered Phones Support (TAPS) due to insufficient validation of user-supplied
input to the TAPS interface of the affected device. An unauthenticated, remote attacker can exploit this, by sending a
crafted request to the TAPS interface, in order to read arbitrary files in the system.
Please see the included Cisco BIDs and Cisco Security Advisory for more information.");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-cucm-taps-path-trav-pfsFO93r
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?68b8a524");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvq58268");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvt33058");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug IDs CSCvq58268, CSCvt33058");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/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:N/UI:N/S:U/C:H/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-2020-3177");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_cwe_id(22);
script_set_attribute(attribute:"vuln_publication_date", value:"2020/04/15");
script_set_attribute(attribute:"patch_publication_date", value:"2020/04/15");
script_set_attribute(attribute:"plugin_publication_date", value:"2020/04/21");
script_set_attribute(attribute:"potential_vulnerability", value:"true");
script_set_attribute(attribute:"plugin_type", value:"combined");
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", "Settings/ParanoidReport");
exit(0);
}
include('cisco_workarounds.inc');
include('ccf.inc');
product_info = cisco::get_product_info(name:'Cisco Unified Communications Manager');
if (report_paranoia < 2) audit(AUDIT_PARANOID);
vuln_ranges = [
{'min_ver' : '0.0', 'fix_ver' : '10.5.2.21900.13'},
{'min_ver' : '11.0', 'fix_ver' : '11.5.1.17900.52'},
{'min_ver' : '12.0', 'fix_ver' : '12.5.1.12900.115'}
];
reporting = make_array(
'port' , 0,
'severity' , SECURITY_WARNING,
'version' , product_info['version'],
'bug_id' , 'CSCvq58268, CSCvt33058'
);
cisco::check_and_report(
product_info:product_info,
reporting:reporting,
vuln_ranges:vuln_ranges
);
|