code | #TRUSTED 5adff12c982ac8a4ac827cf40ae48c42e2b98c4cbddd42e79c824b6a40244e2c43942a4d09acc1fa358365103b278c911e9cd39c997dfa25dda478e0c97a65837bbd1e5e8d913a24a76df1ee21a20d6cf3bc247b3bd5b8ee7d0922a3dcd9ac0ed46639249447606f035074f9af38a6c18c4b43173ff7f4078a90a830c178ede636d434a93cf2d895c5ee2b26407fbdcf7b2d6a8aa77093aab687df571b18dc051fd560d9c99e61e13068ce017aec886f202abfb6dab5131b2161acb2f2a018dcf7c419bd1def3604d219943bba4cb49eecee7f94f0efd9f1c06e80d2dfa4c02a4ac310ed27abd82f8b2cd03840c2196fceefa475a7914566ec2258c7be9de2c8bc527d28c55807a0a72c1da49084f6f69f4fb93a60986451de7a9e28c3de4c5d0bc3ce1389f806d667eb09ea5b7d954c7d08cfa8dec86a032711002d2a0013bfeb8353ace679404ba35e9d5480913bcfa4070ab01dafb296030cab250b51405f902214bd77a4686be6ce6105ef10637f6b8bf022622eca2dd3f89b1f9757fe22e19b3599ecac21b7230222bce351d043efbb1c639b3bd0fdaea206e03c95b4049076eae15efa12a0a8ac2f9b059c3ccd9458aed3fb84a5c5d8ccfed00361b5d8052c83869e17041c86438dedcd4418bc6b9d06fcf81027dc13fadf6b6743819620425afbeb07e922e4d305d8ac0816f53b6014307f10902449ef652dfe9d5df8
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(132043);
script_version("1.4");
script_cvs_date("Date: 2019/12/16");
script_cve_id("CVE-2018-0257");
script_bugtraq_id(103948);
script_xref(name:"CISCO-BUG-ID", value:"CSCvg73687");
script_xref(name:"CISCO-SA", value:"cisco-sa-20180418-cbr8");
script_name(english:"Cisco cBR Series Converged Broadband Routers High CPU Usage DoS (cisco-sa-20180418-cbr8)");
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 IOS XE Software is affected by a denial of service (DoS) vulnerability on
Cisco cBR Series Converged Broadband Routers due to incorrect handling of certain DHCP packets. An unauthenticated,
adjacent, attacker can exploit this, by sending certain DHCP packets to a specific segment of an affected device in
order to increase CPU usage and cause a DoS condition.
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-20180418-cbr8
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?1b49f808");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvg73687");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID(s) CSCvg73687.");
script_set_cvss_base_vector("CVSS2#AV:A/AC:L/Au:N/C:N/I:N/A:P");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_cvss3_base_vector("CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L");
script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
script_set_attribute(attribute:"cvss_score_source", value:"CVE-2018-0257");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"vuln_publication_date", value:"2018/04/19");
script_set_attribute(attribute:"patch_publication_date", value:"2018/04/18");
script_set_attribute(attribute:"plugin_publication_date", value:"2019/12/13");
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:ios_xe");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CISCO");
script_copyright(english:"This script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("cisco_ios_xe_version.nasl");
script_require_keys("Host/Cisco/IOS-XE/Version", "Settings/ParanoidReport", "Host/Cisco/IOS-XE/Model");
exit(0);
}
include('cisco_workarounds.inc');
include('ccf.inc');
include('audit.inc');
if (report_paranoia < 2) audit(AUDIT_PARANOID);
product_info = cisco::get_product_info(name:'Cisco IOS XE Software');
model = product_info['model'];
if (model !~ 'cBR')
audit(AUDIT_HOST_NOT, 'an affected model');
version = product_info['version'];
if ('SP' >< version)
vuln_ranges = [
{ 'min_ver' : '3.18', 'fix_ver' : '3.18.3bSP' }
];
else
vuln_ranges = [
{ 'min_ver' : '16.4', 'fix_ver' : '16.6.3' },
{ 'min_ver' : '16.7', 'fix_ver' : '16.7.2' }
];
workarounds = make_list(CISCO_WORKAROUNDS['no_workaround']);
workaround_params = make_list();
reporting = make_array(
'port' , 0,
'severity' , SECURITY_NOTE,
'version' , version,
'bug_id' , 'CSCvg73687'
);
cisco::check_and_report(
product_info:product_info,
workarounds:workarounds,
workaround_params:workaround_params,
reporting:reporting,
vuln_ranges:vuln_ranges,
router_only:TRUE
);
|