code | #TRUSTED 260cb4e26795f8699d5113078edf2ce6489a7083522ceff05de8d8e499836139966025e1b97366347743d1174dde1847daf1951e199f6f269b126ab9309ceea646be53c5b60abcde80ef26dfbcc18b0bc4dcac6bd25d855931ca938bc238fbb410e7faf5349f5fa788160f0e4eb652645404e0dc4aecccdec67558beba29e41e0d6d5fafe06baa66666345317817f4625ddacc7ea4c01422acf90d5d8fbfbaf056f7806b9f1d27bb07445ef0d580220e93badff3671d6d28fb1cc589aa0dc94c9d8979ab25c36bae97bec5ce3dbd02ea1f64ca02be9345ba35fa3019f744b74f2569e933d93fb3c1a918e398d3192e37bc52663b93158338284ef05b662a61b3bc2c7f7da8a22b9960a3b67becbaeb3689c06bec740906dd551f9b800f52824f6a4cc0591574551706a28d5452def9451fe21802df301c01c401f2efa88bc6e46b66cad51d190fecf00747352a892654f842f1b08c95951ab45efba54232ad7725054851ea185deff441cffadb0529eec333c9cc06bf0118425c6278c6efcb8461ccba09312a69c8761ca0b61e09d3e123b4a6e55aedaf1c91280ce1ae3093abc9d504b7d7945ad059859b2a18c924609324925d334f45033948ab5efd507f981547deecdca507b65433384ee175dc41fa6749e701955820753e93345d62ead1713d53ec296937ae60444a93e980b1eca8ea778c1d634a840f003f3fbda9606d
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(104461);
script_version("1.9");
script_cvs_date("Date: 2019/12/20");
script_cve_id("CVE-2017-12280");
script_bugtraq_id(101646);
script_xref(name:"CISCO-BUG-ID", value:"CSCvb95842");
script_xref(name:"CISCO-SA", value:"cisco-sa-20171101-wlc3");
script_name(english:"Cisco Wireless LAN Controller CAPWAP Discovery Request Denial of Service Vulnerability");
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 one or more vulnerabilities.
Please see the included Cisco BIDs and the Cisco Security
Advisory for more information.");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20171101-wlc3
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?88a89292");
script_set_attribute(attribute:"see_also", value:"https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvb95842");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID(s)
CSCvb95842.");
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:"cvss_score_source", value:"CVE-2017-12280");
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:"2017/11/01");
script_set_attribute(attribute:"patch_publication_date", value:"2017/11/01");
script_set_attribute(attribute:"plugin_publication_date", value:"2017/11/08");
script_set_attribute(attribute:"plugin_type", value:"local");
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) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("cisco_wlc_version.nasl");
script_require_keys("Host/Cisco/WLC/Version", "Host/Cisco/WLC/Model");
exit(0);
}
include("audit.inc");
include("cisco_workarounds.inc");
include("ccf.inc");
include("global_settings.inc");
model = get_kb_item_or_exit('Host/Cisco/WLC/Model');
product_info = cisco::get_product_info(name:"Cisco Wireless LAN Controller (WLC)");
# Only model 5500 is affected
if (model !~ "^55[0-9][0-9]([^0-9]|$)") audit(AUDIT_HOST_NOT, "an affected model");
vuln_ranges = [
{ 'min_ver' : '7.0.0.0', 'fix_ver' : '8.0.150.0' },
{ 'min_ver' : '8.1.0.0', 'fix_ver' : '8.2.150.0' },
{ 'min_ver' : '8.3.0.0', 'fix_ver' : '8.3.111.0' }
];
workarounds = make_list(CISCO_WORKAROUNDS['no_workaround']);
workaround_params = make_list();
reporting = make_array(
'port' , 0,
'severity' , SECURITY_HOLE,
'version' , product_info['version'],
'bug_id' , "CSCvb95842"
);
cisco::check_and_report(product_info:product_info, workarounds:workarounds, workaround_params:workaround_params, reporting:reporting, vuln_ranges:vuln_ranges);
|