code | #TRUSTED 2d4ce94b14a1718c67a39eadefa72e60f6b1e5b76831ac22b31b39cdb7f8b5a00944bb4f60a8b601a64d69a1092c64f0e6b40ca3fb5693ce98b49059ee0330093f90817629d0e274a82fd707c03c7e098a115394112a04b55c39b20f8ed8d431d28a955f1bf51245bedb7f83860db9e9428a92b5895a282aea8c3cb5d5b4381dd995193ce677590a52728fd88df0da2f644aacda4fba48eaffb4c8cf4c40493b7519da88a8bbff72367488e873c38ce893289e2010de18e2a33ae892b9693c508b2030279f2fc5ae19ae5c4e93fb393025901583c8b5df94639ba7026fa2c99283b4c745c3d6fc1865e1d903cf89ec225b187205cae43491d3161a0a7b0516668ab1a47293e66805251c2e8b51b078d963797556f61bd893ea2c18b6b159a7aaca20d7b802363e771720b83d364cad7da6dbfeee4a2fde34ce52f6bd003439cd544f9ec44c1f5db54f9a657cfb81c6625b657ba2f618f9d7132df4b66483f2c904455fde80c157f5e198b0563971a4d83cf2404ae2d08d41c7613b6b64bf5acaa2229ad7d98cdfb0e27a5ca0eaaab224f48a98a1628fd84445d35a190618b03b1b2450bc129643261b6c0f45e90e11dffddb1a3072f03279561001b32023514509341fc0a8404295e90039c1642ab3750225477e41aa60e7c4410b3177f4f04574deb77002fb19081ad0e9b3c443f43a518fde3155a551363b87c11c1a9bbcb0
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(128769);
script_version("1.4");
script_cvs_date("Date: 2019/12/20");
script_cve_id("CVE-2019-1846");
script_bugtraq_id(108363);
script_xref(name:"CISCO-BUG-ID", value:"CSCvk63685");
script_xref(name:"CISCO-SA", value:"cisco-sa-20190515-iosxr-mpls-dos");
script_name(english:"Cisco IOS XR Software for Cisco ASR 9000 Series Aggregation Services Routers MPLS OAM Denial of Service Vulnerability");
script_summary(english:"Checks the version of Cisco IOS XR Software");
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 following vulnerability
- A vulnerability in the Multiprotocol Label Switching
(MPLS) Operations, Administration, and Maintenance (OAM)
implementation of Cisco IOS XR Software for Cisco ASR
9000 Series Aggregation Services Routers could allow an
unauthenticated, adjacent attacker to trigger a denial
of service (DoS) condition on an affected device.The
vulnerability is due to the incorrect handling of
certain MPLS OAM packets. An attacker could exploit this
vulnerability by sending malicious MPLS OAM packets to
an affected device. A successful exploit could allow the
attacker to cause the lspv_server process to crash. The
crash could lead to system instability and the inability
to process or forward traffic though the device,
resulting in a DoS condition that require manual
intervention to restore normal operating conditions.
Please see the included Cisco BIDs and Cisco Security Advisory for
more information");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20190515-iosxr-mpls-dos
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?4d35f409");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvk63685");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID
CSCvk63685");
script_set_cvss_base_vector("CVSS2#AV:A/AC:L/Au:N/C:N/I:N/A:C");
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: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-2019-1846");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_cwe_id(20);
script_set_attribute(attribute:"vuln_publication_date", value:"2019/05/15");
script_set_attribute(attribute:"patch_publication_date", value:"2019/05/15");
script_set_attribute(attribute:"plugin_publication_date", value:"2019/09/13");
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) 2019 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");
product_info = cisco::get_product_info(name:'Cisco IOS XR');
if (report_paranoia < 2) audit(AUDIT_PARANOID);
version_list = make_list('5.3.3');
workarounds = make_list(CISCO_WORKAROUNDS['mpls-oam']);
workaround_params = make_list();
reporting = make_array(
'port' , 0,
'severity' , SECURITY_WARNING,
'version' , product_info['version'],
'bug_id' , 'CSCvk63685'
);
cisco::check_and_report(product_info:product_info,
workarounds:workarounds,
workaround_params:workaround_params,
reporting:reporting,
vuln_versions:version_list,
router_only: TRUE);
|