Slackware: Security Advisory (SSA:2016-121-01)
🗓️ 21 Apr 2022 00:00:00Reported by Copyright (C) 2022 Greenbone AGType
openvas🔗 plugins.openvas.org👁 22 Views
| Reporter | Title | Published | Views | Family All 91 |
|---|---|---|---|---|
| Apache Subversion 1.8.x < 1.8.16 / 1.9.x < 1.9.4 Multiple Vulnerabilities | 5 Feb 201600:00 | – | nessus | |
| Amazon Linux AMI : subversion (ALAS-2016-709) | 6 Jun 201600:00 | – | nessus | |
| Amazon Linux AMI : mod_dav_svn (ALAS-2016-710) | 6 Jun 201600:00 | – | nessus | |
| Debian DLA-448-1 : subversion security update | 2 May 201600:00 | – | nessus | |
| Debian DSA-3561-1 : subversion - security update | 2 May 201600:00 | – | nessus | |
| EulerOS 2.0 SP2 : subversion (EulerOS-SA-2019-2504) | 4 Dec 201900:00 | – | nessus | |
| EulerOS 2.0 SP5 : subversion (EulerOS-SA-2019-2550) | 9 Dec 201900:00 | – | nessus | |
| EulerOS 2.0 SP3 : subversion (EulerOS-SA-2019-2669) | 18 Dec 201900:00 | – | nessus | |
| Fedora 24 : subversion-1.9.4-1.fc24 (2016-20cc04ac50) | 12 May 201600:00 | – | nessus | |
| Fedora 23 : subversion (2016-e024b3e02b) | 14 Jul 201600:00 | – | nessus |
10
# SPDX-FileCopyrightText: 2022 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.13.2016.121.01");
script_cve_id("CVE-2016-2167", "CVE-2016-2168");
script_tag(name:"creation_date", value:"2022-04-21 12:12:27 +0000 (Thu, 21 Apr 2022)");
script_version("2025-01-14T05:37:02+0000");
script_tag(name:"last_modification", value:"2025-01-14 05:37:02 +0000 (Tue, 14 Jan 2025)");
script_tag(name:"cvss_base", value:"4.9");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:S/C:P/I:P/A:N");
script_tag(name:"severity_vector", value:"CVSS:3.0/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:N");
script_tag(name:"severity_origin", value:"NVD");
script_tag(name:"severity_date", value:"2016-05-06 17:51:06 +0000 (Fri, 06 May 2016)");
script_name("Slackware: Security Advisory (SSA:2016-121-01)");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2022 Greenbone AG");
script_family("Slackware Local Security Checks");
script_dependencies("gather-package-list.nasl");
script_mandatory_keys("ssh/login/slackware_linux", "ssh/login/slackpack", re:"ssh/login/release=SLK(14\.0|14\.1|current)");
script_xref(name:"Advisory-ID", value:"SSA:2016-121-01");
script_xref(name:"URL", value:"http://www.slackware.com/security/viewer.php?l=slackware-security&y=2016&m=slackware-security.417496");
script_xref(name:"URL", value:"http://subversion.apache.org/security/CVE-2016-2167-advisory.txt");
script_xref(name:"URL", value:"http://subversion.apache.org/security/CVE-2016-2168-advisory.txt");
script_tag(name:"summary", value:"The remote host is missing an update for the 'subversion' package(s) announced via the SSA:2016-121-01 advisory.");
script_tag(name:"vuldetect", value:"Checks if a vulnerable package version is present on the target host.");
script_tag(name:"insight", value:"New subversion packages are available for Slackware 14.0, 14.1, and -current to
fix security issues.
Here are the details from the Slackware 14.1 ChangeLog:
+--------------------------+
patches/packages/subversion-1.7.22-i486-2_slack14.1.txz: Rebuilt.
This update patches two security issues:
CVE-2016-2167: svnserve/sasl may authenticate users using the wrong realm.
CVE-2016-2168: Remotely triggerable DoS vulnerability in mod_authz_svn
during COPY/MOVE authorization check.
For more information, see:
[links moved to references]
(* Security fix *)
+--------------------------+");
script_tag(name:"affected", value:"'subversion' package(s) on Slackware 14.0, Slackware 14.1, Slackware current.");
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-slack.inc");
release = slk_get_ssh_release();
if(!release)
exit(0);
res = "";
report = "";
if(release == "SLK14.0") {
if(!isnull(res = isslkpkgvuln(pkg:"subversion", ver:"1.7.22-i486-2_slack14.0", rls:"SLK14.0"))) {
report += res;
}
if(!isnull(res = isslkpkgvuln(pkg:"subversion", ver:"1.7.22-x86_64-2_slack14.0", rls:"SLK14.0"))) {
report += res;
}
if(report != "") {
security_message(data:report);
} else if(__pkg_match) {
exit(99);
}
exit(0);
}
if(release == "SLK14.1") {
if(!isnull(res = isslkpkgvuln(pkg:"subversion", ver:"1.7.22-i486-2_slack14.1", rls:"SLK14.1"))) {
report += res;
}
if(!isnull(res = isslkpkgvuln(pkg:"subversion", ver:"1.7.22-x86_64-2_slack14.1", rls:"SLK14.1"))) {
report += res;
}
if(report != "") {
security_message(data:report);
} else if(__pkg_match) {
exit(99);
}
exit(0);
}
if(release == "SLKcurrent") {
if(!isnull(res = isslkpkgvuln(pkg:"subversion", ver:"1.9.4-i586-1", rls:"SLKcurrent"))) {
report += res;
}
if(!isnull(res = isslkpkgvuln(pkg:"subversion", ver:"1.9.4-x86_64-1", rls:"SLKcurrent"))) {
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
14 Jan 2025 00:00Current
6.9Medium risk
Vulners AI Score6.9
CVSS 24.9
CVSS 36.8
EPSS0.20686