Vulnerabilities > CVE-2016-1351 - Resource Management Errors vulnerability in Cisco IOS and Nx-Os
Attack vector
NETWORK Attack complexity
LOW Privileges required
NONE Confidentiality impact
NONE Integrity impact
NONE Availability impact
HIGH Summary
The Locator/ID Separation Protocol (LISP) implementation in Cisco IOS 15.1 and 15.2 and NX-OS 4.1 through 6.2 allows remote attackers to cause a denial of service (device reload) via a crafted header in a packet, aka Bug ID CSCuu64279.
Vulnerable Configurations
Common Weakness Enumeration (CWE)
Nessus
NASL family CISCO NASL id CISCO-SA-20160323-LISP-IOS.NASL description The version of Cisco IOS software running on the remote device is affected by a denial of service vulnerability in the implementation of the Locator/ID Separation Protocol (LISP) due to improper input validation when a malformed LISP packet is received. An unauthenticated, remote attacker can exploit this, via a crafted packet, to cause the device to reload. last seen 2020-06-01 modified 2020-06-02 plugin id 90307 published 2016-04-01 reporter This script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/90307 title Cisco IOS Malformed LISP Packet DoS (CSCuu64279) code #TRUSTED 22d538bd02e1a093fd391bc2a87b0b3ca6fd59b82c2a4d48550d08c73a44b3f6b56f3ccda7d652855f68539625ac0eea0c561d7e84e0dfb1c743da0bc3d02c9c142597237c68db2e6fa14889b4fdf2d07ccc53a7a7c1859d5687045892947f3963ac9ddb9026c2081763e4fc792378e6fb17963ebe2c571f1a40790e9554e1e447e930094cc15ca54a41a83f9f86505eafb56a35f4908ce620d0a69c66578496bfe7f7ccc1ea6a6c31e0c906104203354c8c24b848f01fefe5bb9d26feb933322569f5371e8f9b5a4d5cdfcaeb8486343fd1c0354924ad476e1f542da3063abc59a68ee5a1bbd5ad1076754476cc6bb85545534add49575c39eb73714d2a660870d7a736e46049b4c22a00cb3e43e5754f012bd734c7f32cd8d68f04a28be347f15e3025bdd9716618d0bc444b68222b387a6a5134fd87e67170260949c094687635da87c1f678b3e11fa3e1ad6167be10d4b9a223d98635022d4dc40436fdee5d7c1eb1092d874f8de5fc74b8da05e0ebe5804ed9bee5d02b3bd69dfa3546e6b41b6d943b20914f5d146b82e8b68224dffe6ef602404573b93a8060d18ee6f2ebc2201ac7e81c3ac899de05fbdcf4c0232ecca0a9e475f2d011010d6ca6f5b9473c64180761415b42e800f3685b058fc40b7359f1cd0204fe36e160823f77091f59c57a59acea6d089366329a7b43365c19dce353bf78172f1adb9abde8449d # # (C) Tenable Network Security, Inc. # include("compat.inc"); if (description) { script_id(90307); script_version("1.10"); script_cvs_date("Date: 2019/11/19"); script_cve_id("CVE-2016-1351"); script_bugtraq_id(85309); script_xref(name:"CISCO-BUG-ID", value:"CSCuu64279"); script_xref(name:"CISCO-SA", value:"cisco-sa-20160323-lisp"); script_name(english:"Cisco IOS Malformed LISP Packet DoS (CSCuu64279)"); script_summary(english:"Checks the IOS version."); script_set_attribute(attribute:"synopsis", value: "The remote device is affected by a denial of service vulnerability."); script_set_attribute(attribute:"description", value: "The version of Cisco IOS software running on the remote device is affected by a denial of service vulnerability in the implementation of the Locator/ID Separation Protocol (LISP) due to improper input validation when a malformed LISP packet is received. An unauthenticated, remote attacker can exploit this, via a crafted packet, to cause the device to reload."); # https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20160323-lisp script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?c3df085d"); script_set_attribute(attribute:"solution", value: "Upgrade to the relevant fixed version referenced in Cisco bug ID CSCuu64279."); script_set_cvss_base_vector("CVSS2#AV:N/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:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"); script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C"); script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available"); script_set_attribute(attribute:"vuln_publication_date", value:"2016/03/23"); script_set_attribute(attribute:"patch_publication_date", value:"2016/03/23"); script_set_attribute(attribute:"plugin_publication_date", value:"2016/04/01"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"cpe:/o:cisco:ios"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_family(english:"CISCO"); script_copyright(english:"This script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof."); script_dependencies("cisco_ios_version.nasl"); script_require_keys("Host/Cisco/IOS/Version", "Host/Cisco/IOS/Model"); exit(0); } include("audit.inc"); include("cisco_func.inc"); include("cisco_kb_cmd_func.inc"); version = get_kb_item_or_exit("Host/Cisco/IOS/Version"); model = get_kb_item_or_exit("Host/Cisco/IOS/Model"); if (model !~ '6[58]{1}[0-9][0-9]([^0-9]|$)') audit(AUDIT_HOST_NOT, "Catalyst model 6500 / 6800"); flag = 0; override = 0; if (version == "15.1(1)SY1") flag = 1; else if (version == "15.1(1)SY2") flag = 1; else if (version == "15.1(1)SY3") flag = 1; else if (version == "15.1(1)SY4") flag = 1; else if (version == "15.1(1)SY5") flag = 1; else if (version == "15.1(1)SY6") flag = 1; else if (version == "15.1(2)SY") flag = 1; else if (version == "15.1(2)SY1") flag = 1; else if (version == "15.1(2)SY2") flag = 1; else if (version == "15.1(2)SY3") flag = 1; else if (version == "15.1(2)SY4") flag = 1; else if (version == "15.1(2)SY4a") flag = 1; else if (version == "15.1(2)SY5") flag = 1; else if (version == "15.1(2)SY6") flag = 1; else if (version == "15.2(1)SY") flag = 1; else if (version == "15.2(1)SY0a") flag = 1; else if (version == "15.2(1)SY1") flag = 1; if (get_kb_item("Host/local_checks_enabled")) { if (flag) { flag = 0; buf = cisco_command_kb_item("Host/Cisco/Config/show_running-config_lisp", "show running-config | include lisp"); if (check_cisco_result(buf)) { if (preg(multiline:TRUE, pattern:"^router lisp(\s|$)", string:buf)) flag = 1; } else if (cisco_needs_enable(buf)) { override = 1; flag = 1; } } } if (flag) { security_report_cisco( port : 0, severity : SECURITY_HOLE, override : override, version : version, bug_id : "CSCuu64279", cmds : make_list("show running-config | include lisp") ); } else audit(AUDIT_INST_VER_NOT_VULN, "Cisco IOS software", version);
NASL family CISCO NASL id CISCO-SA-20160323-LISP-NXOS.NASL description The version of Cisco NX-OS software running on the remote device is affected by a denial of service vulnerability in the implementation of the Locator/ID Separation Protocol (LISP) due to improper input validation when a malformed LISP packet is received. An unauthenticated, remote attacker can exploit this, via a crafted packet, to cause the device to reload. last seen 2020-06-01 modified 2020-06-02 plugin id 90308 published 2016-04-01 reporter This script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/90308 title Cisco NX-OS Malformed LISP Packet DoS (CSCuv11993) code #TRUSTED 8c7a3289ea505b3d9a1fc0b31d52035131e9cad7663e593090d6cac1343e65c359a402ba6413dd73c8aaea57e51059ec031824b1a21a000de110771d10756003358251121e7993ce332ee54773446902e9ae31d14ecb852abf712b77f05c0a5594b517dc543942bce9f8f49d6804df67401d48584fb22babb5ccc68bab9e24b6d70fc500fb668046ee3a7f17a59bed14ac80ed0ffba7c721e111a87873b5853c11418aa3bf807510b9ef245ac33769766e12b9268957e350d8fed86289adbab36cb5f37a5a4e24fd2d88f65418287fce88f988336be2b9af4f589a72b751fef036a421492e31fcb30bcd09e131bcf4f5886048f89f189d63435202a9f9e676728cf3d2e7744dd14c0d6e528c4fba0b64e5f07d2a57aac8e02e18a94ff2dd90297e88877e12be41d291f8e9382ef51e3cb5e9d7a99d10d205865aeea6700b7eccdb8f2c20fb5d930243ecd2c674d468007c0247134bbb1d97af83f0e987653a1ce100b325bbbf7caf386360e1608df264c8fb6530415b54a04f8abf698dbec25a30b207d2fa28a8b43d0d17b7bfe9c09fe5aeb05257df250154ad23b56702a6f02c3c6dee897a4fc6c8a560000b5880cbf6260355724b325fe3c28a93d2a7e568c2e3645e6a3735af01efa86ad8766ba96f4ee1297142c0a6d0f3be3092d9ac89f13133451a7c9ce693b3108036f3a9c84d2bb4993f84f1421399ce1b8dde03b5 # # (C) Tenable Network Security, Inc. # include("compat.inc"); if (description) { script_id(90308); script_version("1.12"); script_cvs_date("Date: 2019/11/19"); script_cve_id("CVE-2016-1351"); script_bugtraq_id(85309); script_xref(name:"CISCO-BUG-ID", value:"CSCuv11993"); script_xref(name:"CISCO-SA", value:"cisco-sa-20160323-lisp"); script_name(english:"Cisco NX-OS Malformed LISP Packet DoS (CSCuv11993)"); script_summary(english:"Checks the NX-OS version."); script_set_attribute(attribute:"synopsis", value: "The remote device is affected by a denial of service vulnerability."); script_set_attribute(attribute:"description", value: "The version of Cisco NX-OS software running on the remote device is affected by a denial of service vulnerability in the implementation of the Locator/ID Separation Protocol (LISP) due to improper input validation when a malformed LISP packet is received. An unauthenticated, remote attacker can exploit this, via a crafted packet, to cause the device to reload."); # https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20160323-lisp script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?c3df085d"); script_set_attribute(attribute:"solution", value: "Upgrade to the relevant fixed version referenced in Cisco bug ID CSCuv11993."); script_set_cvss_base_vector("CVSS2#AV:N/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:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"); script_set_cvss3_temporal_vector("CVSS:3.0/E:U/RL:O/RC:C"); script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available"); script_set_attribute(attribute:"vuln_publication_date", value:"2016/03/23"); script_set_attribute(attribute:"patch_publication_date", value:"2016/03/23"); script_set_attribute(attribute:"plugin_publication_date", value:"2016/04/01"); script_set_attribute(attribute:"plugin_type", value:"combined"); script_set_attribute(attribute:"cpe", value:"cpe:/o:cisco:nx-os"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_family(english:"CISCO"); script_copyright(english:"This script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof."); script_dependencies("cisco_nxos_version.nasl"); script_require_keys("Host/Cisco/NX-OS/Version", "Host/Cisco/NX-OS/Device", "Host/Cisco/NX-OS/Model"); exit(0); } include("audit.inc"); include("cisco_func.inc"); include("cisco_kb_cmd_func.inc"); device = get_kb_item_or_exit("Host/Cisco/NX-OS/Device"); model = get_kb_item_or_exit("Host/Cisco/NX-OS/Model"); if (device != 'Nexus' || (model !~ '^7[07]{1}[0-9][0-9]([^0-9]|$)')) audit(AUDIT_HOST_NOT, "Nexus model 7000 / 7700"); version = get_kb_item_or_exit("Host/Cisco/NX-OS/Version"); cmds = make_list(); if ( version == "4.1.(2)" || version == "4.1.(3)" || version == "4.1.(4)" || version == "4.1.(5)" || version == "4.2(3)" || version == "4.2(4)" || version == "4.2(6)" || version == "4.2(8)" || version == "4.2.(2a)" || version == "5.0(2a)" || version == "5.0(3)" || version == "5.0(5)" || version == "5.1(1)" || version == "5.1(1a)" || version == "5.1(3)" || version == "5.1(4)" || version == "5.1(5)" || version == "5.1(6)" || version == "5.2(1)" || version == "5.2(3a)" || version == "5.2(4)" || version == "5.2(5)" || version == "5.2(7)" || version == "5.2(9)" || version == "6.0(1)" || version == "6.0(2)" || version == "6.0(3)" || version == "6.0(4)" || version == "6.1(1)" || version == "6.1(2)" || version == "6.1(3)" || version == "6.1(4)" || version == "6.1(4a)" || version == "6.2(10)" || version == "6.2(12)" || version == "6.2(14)S1" || version == "6.2(2)" || version == "6.2(2a)" || version == "6.2(6)" || version == "6.2(6b)" || version == "6.2(8)" || version == "6.2(8a)" || version == "6.2(8b)" || version == "7.2(0)N1(0.1)" ) { flag = FALSE; override = FALSE; if (get_kb_item("Host/local_checks_enabled")) { # Check for M1 modules buf = cisco_command_kb_item("Host/Cisco/Config/show_module_m1", "show module | include M1"); if (check_cisco_result(buf)) { if (preg(multiline:TRUE, pattern:"powered-up(\s|$)", string:buf)) { flag = TRUE; cmds = make_list(cmds, "show module | include M1"); } } else if (cisco_needs_enable(buf)) override = TRUE; } if (!flag && !override) audit(AUDIT_HOST_NOT, "affected"); # Check for LISP enabled if (flag || override) { flag = FALSE; override = FALSE; buf = cisco_command_kb_item("Host/Cisco/Config/show_feature_lisp", "show feature | include lisp"); if (check_cisco_result(buf)) { if (preg(multiline:TRUE, pattern:"enabled(\s|$)", string:buf)) { flag = TRUE; cmds = make_list(cmds, "show feature | include lisp"); } } else if (cisco_needs_enable(buf)) override = TRUE; } if (!flag && !override) audit(AUDIT_HOST_NOT, "affected"); # Check for LISP on interfaces if (flag || override) { flag = FALSE; override = FALSE; buf = cisco_command_kb_item("Host/Cisco/Config/show_ip_lisp", "show ip lisp"); if (check_cisco_result(buf)) { if (preg(multiline:TRUE, pattern:"enabled(\s|$)", string:buf)) { flag = TRUE; cmds = make_list(cmds, "show ip lisp"); } } else if (cisco_needs_enable(buf)) override = TRUE; } if (!flag && !override) audit(AUDIT_HOST_NOT, "affected"); security_report_cisco( port : 0, severity : SECURITY_HOLE, override : override, version : version, bug_id : "CSCuv11993", cmds : cmds ); } else audit(AUDIT_INST_VER_NOT_VULN, "Cisco NX-OS software", version);