code | #TRUSTED 5aa9ea01c280db44b1468d201fffaf9c978819b0f36372e12f4d0e15faf00d53009c4d37e7d25e419fbf5322164b31b994a8fedafb388eec4207e107b9c0561b30298e1f00a33b6e3b5ed16f292ab28036c48c40b1e4915344b38653020a044478e34f7f43b7095d1c3ddc52f5883d667f3a5ac4c02874d4cfba3b0a7ebfc9e9ca497dfd49be7ab2b1efed2bb9d37bbae1c8af79fdad6ecdde3ca96e2a5e879242891512ec28e62d0694167f741f6f077ef87b5264bbb33e739cc3f3a18b1170300e89e1d7d753fe194cb6f1b52f1dea8eb996d884e1373fb2507d61dd06c48e86c3ff6d9400afa9553ab488e8fddde06052dae858677c4142a94e1ba7aa35ef676939c30d0973f25c78fe2c7baf0a6729a2d7b5d1d41fb815630c3aa804ab505ef930f95016945d61c4c8b6c5476e205d5cc40101871cdebb392bfdcdaeb39b88c4dfcf681beee3054152a1e1f12520da7dc5bfd6ec618d51ead57fb65279de88a5f82e41a5213eb9ff1c351eaba8959cb18b1ab22ba3920d3e2ff23ce601279b493ede84977ee3298ada088f47a63dc08df0c874c6ed0c05b7e1095eed87e20257d82c6c0b7e9bd20b04576b52524dd0cef7203675b6f18f0551566a983e9f91fed59b7036f125f09dad7e78e7720565693e9a380cfb3d72c9b1574758992a427f274ee42c2038ca713bf78ff531f45d1142c1e9f0835eede79487d96d80af
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(103509);
script_version("1.7");
script_cvs_date("Date: 2019/12/20");
script_cve_id("CVE-2017-3886");
script_bugtraq_id(97432);
script_xref(name:"CISCO-BUG-ID", value:"CSCvc74291");
script_xref(name:"CISCO-SA", value:"cisco-sa-20170405-ucm");
script_name(english:"Cisco Unified Communications Manager SQL Injection Vulnerability");
script_summary(english:"Checks the Cisco Unified Communications Manager version.");
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, the Cisco Unified
Communications Manager is affected by one or more vulnerabilities.
Please see the included Cisco BIDs and the Cisco Security Advisory for
more information.");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20170405-ucm
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?93d710d2");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvc74291");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID(s)
CSCvc74291.");
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:H/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-2017-3886");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2017/04/05");
script_set_attribute(attribute:"patch_publication_date", value:"2017/04/05");
script_set_attribute(attribute:"plugin_publication_date", value:"2017/09/27");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/o:cpe:/a:cisco:unified_communications_manager");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CISCO");
script_copyright(english:"This script is Copyright (C) 2017-2019 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");
version_list = make_list(
"11.0.1.10000-10.",
"11.5.1.10000-6."
);
workarounds = make_list(CISCO_WORKAROUNDS['no_workaround']);
workaround_params = make_list();
reporting = make_array(
'port' , 0,
'severity' , SECURITY_WARNING,
'version' , product_info['version'],
'bug_id' , "CSCvc74291",
'sqli' , TRUE
);
cisco::check_and_report(product_info:product_info, workarounds:workarounds, workaround_params:workaround_params, reporting:reporting, vuln_versions:version_list);
|