Lucene search

K
nessusThis script is Copyright (C) 2016-2020 Tenable Network Security, Inc.CISCO-SA-20151016-WLC.NASL
HistoryJan 22, 2016 - 12:00 a.m.

Cisco Wireless LAN Controller Client Disconnection DoS

2016-01-2200:00:00
This script is Copyright (C) 2016-2020 Tenable Network Security, Inc.
www.tenable.com
9

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

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

EPSS

0.001

Percentile

47.1%

The remote Cisco Wireless LAN Controller (WLC) is affected by a denial of service vulnerability due to the lack of access control to the management GUI. An unauthenticated, remote attacker can exploit this to trigger client disconnections.

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

include("compat.inc");

if (description)
{
  script_id(88102);
  script_version("1.6");
  script_set_attribute(attribute:"plugin_modification_date", value:"2020/08/20");

  script_cve_id("CVE-2015-6341");
  script_bugtraq_id(77119);
  script_xref(name:"CISCO-SA", value:"cisco-sa-20151016-wlc");
  script_xref(name:"CISCO-BUG-ID", value:"CSCuw10610");

  script_name(english:"Cisco Wireless LAN Controller Client Disconnection DoS");
  script_summary(english:"Checks the WLC version.");

  script_set_attribute(attribute:"synopsis", value:
"The remote device is missing a vendor-supplied security update.");
  script_set_attribute(attribute:"description", value:
"The remote Cisco Wireless LAN Controller (WLC) is affected by a denial
of service vulnerability due to the lack of access control to the
management GUI. An unauthenticated, remote attacker can exploit this
to trigger client disconnections.");
  # https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20151016-wlc
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?e610239d");
  script_set_attribute(attribute:"solution", value:
"Apply the relevant patch referenced in Cisco bug ID CSCuw10610, or
contact the vendor regarding patch options.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
  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:"2015/10/16");
  script_set_attribute(attribute:"patch_publication_date", value:"2015/10/16");
  script_set_attribute(attribute:"plugin_publication_date", value:"2016/01/22");

  script_set_attribute(attribute:"plugin_type", value:"combined");
  script_set_attribute(attribute:"cpe", value:"cpe:/o:cisco:wireless_lan_controller_software");
  script_set_attribute(attribute:"cpe", value:"cpe:/h:cisco:wireless_lan_controller");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_copyright(english:"This script is Copyright (C) 2016-2020 Tenable Network Security, Inc.");
  script_family(english:"CISCO");

  script_dependencies("cisco_wlc_version.nasl");
  script_require_keys("Host/Cisco/WLC/Version", "Host/Cisco/WLC/Port");

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");

version = get_kb_item_or_exit("Host/Cisco/WLC/Version");
port = get_kb_item_or_exit("Host/Cisco/WLC/Port");

######################
# Known Affected :
# 7.4(140.0)
# 7.6(130.0)
# 8.0(120.0)
######################
# Known Fixed :
# 8.0(120.15)
######################

fixed_version = "";
if (version == "7.4.140.0") fixed_version = "See Advisory";
else if (version == "7.6.130.0") fixed_version = "See Advisory";
else if (version == "8.0.120.0") fixed_version = "8.0.120.15";
else audit(AUDIT_HOST_NOT, "affected");

if (report_verbosity > 0)
{
  report =
    '\n  Installed version : ' + version +
    '\n  Fixed version     : ' + fixed_version +
    '\n';
  security_warning(port:port, extra:report);
}
else security_warning(port);

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

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

EPSS

0.001

Percentile

47.1%

Related for CISCO-SA-20151016-WLC.NASL