code |
include("compat.inc");
if (description)
{
script_id(118461);
script_version("1.7");
script_set_attribute(attribute:"plugin_modification_date", value:"2020/04/27");
script_cve_id(
"CVE-2018-0417",
"CVE-2018-0441",
"CVE-2018-0442",
"CVE-2018-0443"
);
script_bugtraq_id(
105664,
105667,
105680,
105686
);
script_xref(name:"CISCO-BUG-ID", value:"CSCvf66680");
script_xref(name:"CISCO-BUG-ID", value:"CSCvh65876");
script_xref(name:"CISCO-BUG-ID", value:"CSCve64652");
script_xref(name:"CISCO-BUG-ID", value:"CSCvf66696");
script_xref(name:"CISCO-SA", value:"cisco-sa-20181017-wlc-capwap-memory-leak");
script_xref(name:"CISCO-SA", value:"cisco-sa-20181017-wlc-gui-privesc");
script_xref(name:"CISCO-SA", value:"cisco-sa-20181017-ap-ft-dos");
script_xref(name:"CISCO-SA", value:"cisco-sa-20181017-wlc-capwap-dos");
script_name(english:"Cisco Wireless LAN Controller Multiple Vulnerabilities");
script_summary(english:"Checks the Cisco Wireless LAN Controller (WLC) version.");
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, the Cisco Wireless LAN
Controller (WLC) is affected by the following vulnerabilities:
- A privilege escalation vulnerability due to improper parsing
of a specific TACACS attribute. A remote attacker,
authenticating to TACACs via the GUI, could create a local
account with administrative privileges. (CVE-2018-0417)
- A denial of service vulnerability due to flaws with specific
timer mechanisms. A remote attacker could potentially cause
the timer to crash resulting in a DoS condition.
(CVE-2018-0441)
- An information disclosure vulnerability due to insufficient
checks when handling Control and Provisioning of Wireless
Access Point keepalive requests. A remote attacker, with a
specially crafted CAPWAP keepalive packet, could potentially
read the devices memory. (CVE-2018-0442)
- A denial of service vulnerability due to improper validation
of CAPWAP discovery request packets. A remote attacker could
potentially disconnect associated APs, resulting in a DoS
condition. (CVE-2018-0443)
Please see the included Cisco BIDs and the Cisco Security Advisory for
more information.");
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?5e14b610");
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?4d106cd6");
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?e4eb02b4");
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?c9605ddd");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvf66680");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvf66696");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvh65876");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCve64652");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID(s)
CSCvf66680, CSCvh65876, CSCve64652, and CSCvf66696.");
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: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-2018-0441");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"vuln_publication_date", value:"2018/10/17");
script_set_attribute(attribute:"patch_publication_date", value:"2018/10/17");
script_set_attribute(attribute:"plugin_publication_date", value:"2018/10/26");
script_set_attribute(attribute:"plugin_type", value:"combined");
script_set_attribute(attribute:"cpe", value:"cpe:/o:cpe:/h:cisco:wireless_lan_controller");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CISCO");
script_copyright(english:"This script is Copyright (C) 2018-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("cisco_wlc_version.nasl");
script_require_keys("Host/Cisco/WLC/Version");
exit(0);
}
include("audit.inc");
include("cisco_workarounds.inc");
include("ccf.inc");
include("global_settings.inc");
product_info = cisco::get_product_info(name:"Cisco Wireless LAN Controller (WLC)");
vuln_ranges = [
{ 'min_ver' : '0.0', 'fix_ver' : '8.3.140.0' },
{ 'min_ver' : '8.4', 'fix_ver' : '8.5.131.0' },
{ 'min_ver' : '8.6', 'fix_ver' : '8.7.102.0' }
];
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' , "CSCvf66680, CSCvh65876, CSCve64652, and CSCvf66696"
);
cisco::check_and_report(product_info:product_info, workarounds:workarounds, workaround_params:workaround_params, reporting:reporting, vuln_ranges:vuln_ranges);
|