SUSE: Security Advisory (SUSE-SU-2018:3480-1)
🗓️ 09 Jun 2021 00:00:00Reported by Copyright (C) 2021 Greenbone AGType
openvas🔗 plugins.openvas.org👁 17 Views
| Reporter | Title | Published | Views | Family All 109 |
|---|---|---|---|---|
| wpa_supplicant -- unauthenticated encrypted EAPOL-Key data | 8 Aug 201800:00 | – | freebsd | |
| Security Bulletin: A vulnerability in wpa_supplicant affects PowerKVM | 17 Dec 201814:25 | – | ibm | |
| Amazon Linux 2 : wpa_supplicant (ALAS-2018-1122) | 10 Dec 201800:00 | – | nessus | |
| CentOS 7 : wpa_supplicant (CESA-2018:3107) | 16 Nov 201800:00 | – | nessus | |
| Debian DLA-1462-1 : wpa security update | 10 Aug 201800:00 | – | nessus | |
| EulerOS 2.0 SP2 : wpa_supplicant (EulerOS-SA-2018-1317) | 27 Sep 201800:00 | – | nessus | |
| EulerOS 2.0 SP3 : wpa_supplicant (EulerOS-SA-2018-1318) | 27 Sep 201800:00 | – | nessus | |
| EulerOS Virtualization 2.5.4 : wpa_supplicant (EulerOS-SA-2019-1194) | 9 Apr 201900:00 | – | nessus | |
| EulerOS Virtualization for ARM 64 3.0.1.0 : wpa_supplicant (EulerOS-SA-2019-1414) | 14 May 201900:00 | – | nessus | |
| EulerOS Virtualization 3.0.1.0 : wpa_supplicant (EulerOS-SA-2019-1422) | 14 May 201900:00 | – | nessus |
10
# SPDX-FileCopyrightText: 2021 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.1.4.2018.3480.1");
script_cve_id("CVE-2018-14526");
script_tag(name:"creation_date", value:"2021-06-09 14:57:35 +0000 (Wed, 09 Jun 2021)");
script_version("2024-02-02T14:37:50+0000");
script_tag(name:"last_modification", value:"2024-02-02 14:37:50 +0000 (Fri, 02 Feb 2024)");
script_tag(name:"cvss_base", value:"3.3");
script_tag(name:"cvss_base_vector", value:"AV:A/AC:L/Au:N/C:P/I:N/A:N");
script_tag(name:"severity_vector", value:"CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2018-10-17 16:39:30 +0000 (Wed, 17 Oct 2018)");
script_name("SUSE: Security Advisory (SUSE-SU-2018:3480-1)");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2021 Greenbone AG");
script_family("SuSE Local Security Checks");
script_dependencies("gather-package-list.nasl");
script_mandatory_keys("ssh/login/suse_sles", "ssh/login/rpms", re:"ssh/login/release=(SLES15\.0)");
script_xref(name:"Advisory-ID", value:"SUSE-SU-2018:3480-1");
script_xref(name:"URL", value:"https://www.suse.com/support/update/announcement/2018/suse-su-20183480-1/");
script_tag(name:"summary", value:"The remote host is missing an update for the 'wpa_supplicant' package(s) announced via the SUSE-SU-2018:3480-1 advisory.");
script_tag(name:"vuldetect", value:"Checks if a vulnerable package version is present on the target host.");
script_tag(name:"insight", value:"This update for wpa_supplicant provides the following fixes:
This security issues was fixe:
CVE-2018-14526: Under certain conditions, the integrity of EAPOL-Key
messages was not checked, leading to a decryption oracle. An attacker
within range of the Access Point and client could have abused the
vulnerability to recover sensitive information (bsc#1104205)
These non-security issues were fixed:
Fix reading private key passwords from the configuration file.
(bsc#1099835)
Enable PWD as EAP method. This allows for password-based authentication,
which is easier to setup than most of the other methods, and is used by
the Eduroam network. (bsc#1109209)
compile eapol_test binary to allow testing via radius proxy and server
(note: this does not match CONFIG_EAPOL_TEST which sets -Werror and
activates an assert call inside the code of wpa_supplicant)
(bsc#1111873), (fate#326725)
Enabled timestamps in log file when being invoked by systemd service
file (bsc#1080798).
Fixes the default file permissions of the debug log file to more sane
values, i.e. it is no longer world-readable (bsc#1098854).
Open the debug log file with O_CLOEXEC, which will prevent file
descriptor leaking to child processes (bsc#1098854).");
script_tag(name:"affected", value:"'wpa_supplicant' package(s) on SUSE Linux Enterprise Module for Basesystem 15.");
script_tag(name:"solution", value:"Please install the updated package(s).");
script_tag(name:"solution_type", value:"VendorFix");
script_tag(name:"qod_type", value:"package");
exit(0);
}
include("revisions-lib.inc");
include("pkg-lib-rpm.inc");
release = rpm_get_ssh_release();
if(!release)
exit(0);
res = "";
report = "";
if(release == "SLES15.0") {
if(!isnull(res = isrpmvuln(pkg:"wpa_supplicant", rpm:"wpa_supplicant~2.6~4.11.1", rls:"SLES15.0"))) {
report += res;
}
if(!isnull(res = isrpmvuln(pkg:"wpa_supplicant-debuginfo", rpm:"wpa_supplicant-debuginfo~2.6~4.11.1", rls:"SLES15.0"))) {
report += res;
}
if(!isnull(res = isrpmvuln(pkg:"wpa_supplicant-debugsource", rpm:"wpa_supplicant-debugsource~2.6~4.11.1", rls:"SLES15.0"))) {
report += res;
}
if(report != "") {
security_message(data:report);
} else if(__pkg_match) {
exit(99);
}
exit(0);
}
exit(0);
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation
02 Feb 2024 00:00Current
6.8Medium risk
Vulners AI Score6.8
CVSS 23.3
CVSS 36.5
EPSS0.01056