code | #TRUSTED 544c91848bef1cde5c34f2f243ab1497158c68c6a86bd6e72abf41b6a1042c6e17d2ca49b90a790fe76b7ddbb2d07fea755cb390de1f24411ac80c30e7727f3c8d30357d8a5b2b40fdb18dd4114affc55302d5073a7e0b4215fe9a902f732a6aaf1f3bf9114baf86e014a9f802ed75344684be54b2e8a89e9027da4fbcdf20d48f6b38d5e6dafb04768e785d60e3bce21adff17fc934a2661e80465a0a4759e3ebd00545c7bb48bd7a039dfbb9e8cd2c0dac087a414178fe2d1b9c2a4ae15ca78bb7f87c45fb69e55dbdbb06872a2878630230433397099fcd0202a5d95a3a9bc1b7487be18e78d313f1c393fd0559782217fa609eb71e4dccc25b0f694f20808aecdeb2211d9ef4668a47bc24d0428ccb9ea0fb78be0e5c6f7ce2e3457aecb15672dd11506f4e2c76a94a1143dafc28decf1cfcefd125be552113e579f11056464083785254c1428a62fcf2d02c4a35ae312d3436fe62ea89d7bab16c3658079ceae62c7440b189390cced9bcdd12e4945fedb9c6b43ef2425cc55f279d4779e05928ddade651aa4981ea054ce5751ca4273fb6b2e153d6dc6bbf759d3a387ef6392ccaba70122c17559b4f544c292d9a3ba49732c89dd1170989fbfec546646e6d34b03c726add101dcd9063faf3dab7cd3e07dfb83daed185c4bb91516d2e284ac1a549f407ece02602dd90993f73ba80bb394422accba5a6eb85ca2e8e41
#
# (C) Tenable Network Security, Inc.
#
include('compat.inc');
if (description)
{
script_id(131024);
script_version("1.7");
script_cvs_date("Date: 2020/01/31");
script_cve_id("CVE-2019-15956");
script_xref(name:"CISCO-BUG-ID", value:"CSCvp51493");
script_xref(name:"CISCO-SA", value:"cisco-sa-20191106-wsa-unauth-devreset");
script_name(english:"Cisco Web Security Appliance Unauthorized Device Reset Vulnerability");
script_summary(english:"Checks the version of Cisco Web Security Appliance (WSA)");
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, Cisco Web Security Appliance (WSA) is affected by the following vulnerability:
- A vulnerability in the web management interface of Cisco AsyncOS Software for Cisco Web Security Appliance
(WSA) could allow an authenticated, remote attacker to perform an unauthorized system reset on an affected
device. The vulnerability is due to improper authorization controls for a specific URL in the web
management interface. An attacker could exploit this vulnerability by sending a crafted HTTP request to an
affected device. A successful exploit could have a twofold impact: the attacker could either change the
administrator password, gaining privileged access, or reset the network configuration details, causing a
denial of service (DoS) condition. In both scenarios, manual intervention is required to restore normal
operations.
Please see the included Cisco BIDs and Cisco Security Advisory for more information");
# https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-20191106-wsa-unauth-devreset
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?c654227f");
# https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvp51493
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?aa0b2c00");
script_set_attribute(attribute:"solution", value:
"Upgrade to the relevant fixed version referenced in Cisco bug ID CSCvp51493");
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:S/C:P/I:P/A:P");
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:L/UI:N/S:U/C:H/I:H/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-2019-15956");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_cwe_id(284);
script_set_attribute(attribute:"vuln_publication_date", value:"2019/11/06");
script_set_attribute(attribute:"patch_publication_date", value:"2019/11/06");
script_set_attribute(attribute:"plugin_publication_date", value:"2019/11/15");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/o:cisco:web_security_appliance_(wsa)");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CISCO");
script_copyright(english:"This script is Copyright (C) 2019-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("cisco_wsa_version.nasl");
script_require_keys("Host/AsyncOS/Cisco Web Security Appliance/DisplayVersion", "Host/AsyncOS/Cisco Web Security Appliance/Version");
exit(0);
}
include('audit.inc');
include('cisco_workarounds.inc');
include('ccf.inc');
product_info = cisco::get_product_info(name:'Cisco Web Security Appliance (WSA)');
vuln_ranges = [
{ 'min_ver' : '10.1', 'fix_ver' : '10.1.5-004' },
{ 'min_ver' : '10.5', 'fix_ver' : '11.5.3-016' },
{ 'min_ver' : '11.5', 'fix_ver' : '11.5.3-016' },
{ 'min_ver' : '11.7', 'fix_ver' : '11.7.1-006' }
];
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' , 'CSCvp51493'
);
cisco::check_and_report(
product_info:product_info,
workarounds:workarounds,
workaround_params:workaround_params,
reporting:reporting,
vuln_ranges:vuln_ranges
);
|