code | #TRUSTED 81d33e64a9c638c1a6adafc5885a5020ee8cf14d3a398046dcc534d8f2c8fab080eb6c9b3c0c66f3295ed7335a8a7e3afe22a0bdece18c5d7093db4d1229f5b434dc696094c9545cf8ddb0862057645292c237b725d914975be0a17e9485f87b66ff20b152a5ced96ac7543afc7e83fecda9da78d1cf10d4a5931cec8e7301023a41709e259c7804c93364ceabbd75cb654a63cc03f5e9dc474e2c0f6ee310fff1a4ee4aac596f209e20fdde2073f16bb3d9991802840797fd1bd5c838576c7e8e9353669f8a32fc187daff9d50d5e1a4d03dd8162a0de7f8883d7676ecb64ef62287f948a8cf71c11d8f6b323862afb21827147e671321823dc0c89dd33c13c2aa8d343a00de9084c8d6097d1fac414061d9385ff5c56da200226c97343e21663723db4c6d194f8b9a826fb16b543c3dea1399d7b68924b7ad11dfdce27e5a5d86e49ecb59a40077b802084703bf5e2b25a8d530a8759a65961cdb57f03fb789c4e3f08690d300bc20773284641ef120a6b72e9a36c973d4a48bdd7d3d6552c4f7fbfc61b532a4c96e749e4dadd3db314db76879c5b924d22762b4f8ff79e4b4e2e30c5215ceccee9597ad166315267d8b414592b2e6c08ee7f460604aca19d4392e8c8e10fc969b0cac79f6d900f7e500d4885f9ded6a6e2e5c23f120b89f4ed34980297ee9bcc4d8ce16048d4bac7dcc71732c30ba347387f6d3ffcad4975
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(133267);
script_version("1.4");
script_cvs_date("Date: 2020/01/29");
script_cve_id("CVE-2018-15428");
script_bugtraq_id(105944);
script_xref(name:"CISCO-BUG-ID", value:"CSCvj58445");
script_xref(name:"CISCO-SA", value:"cisco-sa-20181003-iosxr-dos");
script_name(english:"Cisco IOS XR Software Border Gateway Protocol DoS (cisco-sa-20181003-iosxr-dos)");
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 XR Software is affected by a denial of service (DoS) vulnerability in
its implementation of the Border Gateway Protocol (BGP). This is due to incorrect processing of certain BGP update
messages. An unauthenticated, remote attacker can exploit this, by sending BGP update messages that include a specific,
malformed attribute to be processed by an affected system. A successful exploit allows an attacker to cause the BGP
process to restart, resulting in a DoS condition.
Please see the included Cisco BIDs and Cisco Security Advisory for more information");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20181003-iosxr-dos
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?4dc4cd5a");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvj58445");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID CSCvj58445");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/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:N/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H");
script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C");
script_set_attribute(attribute:"cvss_score_source", value:"CVE-2018-15428");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"vuln_publication_date", value:"2018/10/05");
script_set_attribute(attribute:"patch_publication_date", value:"2018/10/03");
script_set_attribute(attribute:"plugin_publication_date", value:"2020/01/28");
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_xr");
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_ios_xr_version.nasl");
script_require_keys("Host/Cisco/IOS-XR/Version", "Settings/ParanoidReport");
exit(0);
}
include('audit.inc');
include('cisco_workarounds.inc');
include('ccf.inc');
if (report_paranoia < 2)
audit(AUDIT_PARANOID);
product_info = cisco::get_product_info(name:'Cisco IOS XR');
version_list = make_list(
'6.0.1',
'6.0.2',
'6.1.1',
'6.1.2',
'6.1.3',
'6.1.4',
'6.2.1',
'6.2.2',
'6.2.3',
'6.4.1'
);
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' , 'CSCvj58445'
);
cisco::check_and_report(
product_info:product_info,
workarounds:workarounds,
workaround_params:workaround_params,
reporting:reporting,
vuln_versions:version_list
);
|