Lucene search

K
nessusThis script is Copyright (C) 2014-2018 Tenable Network Security, Inc.CISCO-SN-20136705-IOS.NASL
HistoryJan 13, 2014 - 12:00 a.m.

Cisco IOS Software IP Device Tracking DoS

2014-01-1300:00:00
This script is Copyright (C) 2014-2018 Tenable Network Security, Inc.
www.tenable.com
28

CVSS2

6.1

Attack Vector

ADJACENT_NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

COMPLETE

AV:A/AC:L/Au:N/C:N/I:N/A:C

EPSS

0.001

Percentile

45.0%

A vulnerability in the IP Device Tracking function in Cisco IOS could allow a remote, unauthenticated attacker to trigger a denial of service condition resulting in a reload of the device.

It should be noted that while the vendor describes a possible workaround, this plugin does not test for the presence of that workaround.

#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
  script_id(71925);
  script_version("1.5");
  script_cvs_date("Date: 2018/11/15 20:50:20");

  script_cve_id("CVE-2013-6705");
  script_bugtraq_id(64063);
  script_xref(name:"CISCO-BUG-ID", value:"CSCuh38133");

  script_name(english:"Cisco IOS Software IP Device Tracking DoS");
  script_summary(english:"Checks 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:
"A vulnerability in the IP Device Tracking function in Cisco IOS could
allow a remote, unauthenticated attacker to trigger a denial of service
condition resulting in a reload of the device. 

It should be noted that while the vendor describes a possible
workaround, this plugin does not test for the presence of that
workaround."
  );
  # https://tools.cisco.com/security/center/viewAlert.x?alertId=32001
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?bdbc7241");
  script_set_attribute(attribute:"solution", value:"Apply the relevant patch referenced in the Cisco Security Notice.");
  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_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:"2013/12/03");
  script_set_attribute(attribute:"patch_publication_date", value:"2013/12/03");
  script_set_attribute(attribute:"plugin_publication_date", value:"2014/01/13");

  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) 2014-2018 Tenable Network Security, Inc.");


  script_dependencies("cisco_ios_version.nasl");
  script_require_keys("Host/Cisco/IOS/Version");

  exit(0);
}

include("audit.inc");
include("cisco_func.inc");

flag = 0;

version = get_kb_item_or_exit("Host/Cisco/IOS/Version");

# Per Cisco:
# Cisco IOS Software releases are affected:
# 15.0(1)EX and later.
# 15.1(1)XO and later.
# 15.2(1)E and later.

if ( version =~ '^15.0(1)EX($|[0-3]$)' ) flag++;
if ( version == '15.1(1)XO' ) flag++;
if ( version =~ '^15.2(1)E($|[01]$)' ) flag++;

if (flag)
{
  if(report_verbosity > 0)
  {
    report = '\n  Cisco Bug ID          : CSCuh38133' +
             '\n      Installed release : ' + version + '\n';
    security_warning(extra:report, port:0);
  }
  else security_warning(0);
  exit(0);
}
else audit(AUDIT_HOST_NOT, "affected");

CVSS2

6.1

Attack Vector

ADJACENT_NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

COMPLETE

AV:A/AC:L/Au:N/C:N/I:N/A:C

EPSS

0.001

Percentile

45.0%

Related for CISCO-SN-20136705-IOS.NASL