| Reporter | Title | Published | Views | Family All 109 |
|---|---|---|---|---|
| Low: busybox | 5 Jul 201200:00 | – | amazon | |
| Amazon Linux AMI : busybox (ALAS-2012-103) | 4 Sep 201300:00 | – | nessus | |
| CentOS 3 / 4 : ncompress (CESA-2006:0663) | 14 Sep 200600:00 | – | nessus | |
| CentOS 6 : busybox (CESA-2012:0810) | 11 Jul 201200:00 | – | nessus | |
| Debian DSA-1149-1 : ncompress - buffer underflow | 14 Oct 200600:00 | – | nessus | |
| EulerOS 2.0 SP2 : libXfont (EulerOS-SA-2019-2357) | 10 Dec 201900:00 | – | nessus | |
| GLSA-200610-03 : ncompress: Buffer Underflow | 10 Oct 200600:00 | – | nessus | |
| GLSA-201312-02 : BusyBox: Multiple vulnerabilities | 3 Dec 201300:00 | – | nessus | |
| Mandrake Linux Security Advisory : ncompress (MDKSA-2006:140) | 16 Dec 200600:00 | – | nessus | |
| Mandriva Linux Security Advisory : cups (MDVSA-2011:146) | 11 Oct 201100:00 | – | nessus |
| Source | Link |
|---|---|
| redhat | www.redhat.com/archives/rhsa-announce/2012-June/msg00025.html |
###############################################################################
# OpenVAS Vulnerability Test
#
# RedHat Update for busybox RHSA-2012:0810-04
#
# Authors:
# System Generated Check
#
# Copyright:
# Copyright (c) 2012 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################
include("revisions-lib.inc");
tag_insight = "BusyBox provides a single binary that includes versions of a large number
of system commands, including a shell. This can be very useful for
recovering from certain types of system failures, particularly those
involving broken shared libraries.
A buffer underflow flaw was found in the way the uncompress utility of
BusyBox expanded certain archive files compressed using Lempel-Ziv
compression. If a user were tricked into expanding a specially-crafted
archive file with uncompress, it could cause BusyBox to crash or,
potentially, execute arbitrary code with the privileges of the user
running BusyBox. (CVE-2006-1168)
The BusyBox DHCP client, udhcpc, did not sufficiently sanitize certain
options provided in DHCP server replies, such as the client hostname. A
malicious DHCP server could send such an option with a specially-crafted
value to a DHCP client. If this option's value was saved on the client
system, and then later insecurely evaluated by a process that assumes the
option is trusted, it could lead to arbitrary code execution with the
privileges of that process. Note: udhcpc is not used on Red Hat Enterprise
Linux by default, and no DHCP client script is provided with the busybox
packages. (CVE-2011-2716)
This update also fixes the following bugs:
* Prior to this update, 'findfs' command did not recognize Btrfs
partitions. As a consequence, an error message could occur when dumping a
core file. This update adds support for recognizing such partitions so
the problem no longer occurs. (BZ#751927)
* If the 'grep' command was used with the '-F' and '-i' options at the
same time, the '-i'; option was ignored. As a consequence, the 'grep -iF'
command incorrectly performed a case-sensitive search instead of an
insensitive search. A patch has been applied to ensure that the combination
of the '-F' and '-i' options works as expected. (BZ#752134)
* Prior to this update, the msh shell did not support the 'set -o pipefail'
command. This update adds support for this command. (BZ#782018)
* Previously, the msh shell could terminate unexpectedly with a
segmentation fault when attempting to execute an empty command as a result
of variable substitution (for example msh -c '$nonexistent_variable').
With this update, msh has been modified to correctly interpret such
commands and no longer crashes in this scenario. ...
Description truncated, for more information please check the Reference URL";
tag_affected = "busybox on Red Hat Enterprise Linux Desktop (v. 6),
Red Hat Enterprise Linux Server (v. 6),
Red Hat Enterprise Linux Workstation (v. 6)";
tag_solution = "Please Install the Updated Packages.";
if(description)
{
script_xref(name : "URL" , value : "https://www.redhat.com/archives/rhsa-announce/2012-June/msg00025.html");
script_id(870773);
script_version("$Revision: 8273 $");
script_tag(name:"last_modification", value:"$Date: 2018-01-03 07:29:19 +0100 (Wed, 03 Jan 2018) $");
script_tag(name:"creation_date", value:"2012-06-22 10:26:24 +0530 (Fri, 22 Jun 2012)");
script_cve_id("CVE-2006-1168", "CVE-2011-2716");
script_tag(name:"cvss_base", value:"7.5");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
script_xref(name: "RHSA", value: "2012:0810-04");
script_name("RedHat Update for busybox RHSA-2012:0810-04");
script_tag(name: "summary" , value: "Check for the Version of busybox");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (c) 2012 Greenbone Networks GmbH");
script_family("Red Hat Local Security Checks");
script_dependencies("gather-package-list.nasl");
script_mandatory_keys("ssh/login/rhel", "ssh/login/rpms");
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "insight" , value : tag_insight);
script_tag(name:"qod_type", value:"package");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
include("pkg-lib-rpm.inc");
release = get_kb_item("ssh/login/release");
res = "";
if(release == NULL){
exit(0);
}
if(release == "RHENT_6")
{
if ((res = isrpmvuln(pkg:"busybox", rpm:"busybox~1.15.1~15.el6", rls:"RHENT_6")) != NULL)
{
security_message(data:res);
exit(0);
}
if (__pkg_match) exit(99); # Not vulnerable.
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