Vulnerabilities > CVE-2010-4267 - Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in HP Linux Imaging and Printing Project 1.6.7/3.10.9/3.9.8
Attack vector
UNKNOWN Attack complexity
UNKNOWN Privileges required
UNKNOWN Confidentiality impact
UNKNOWN Integrity impact
UNKNOWN Availability impact
UNKNOWN Summary
Stack-based buffer overflow in the hpmud_get_pml function in io/hpmud/pml.c in Hewlett-Packard Linux Imaging and Printing (HPLIP) 1.6.7, 3.9.8, 3.10.9, and probably other versions allows remote attackers to cause a denial of service (crash) and possibly execute arbitrary code via a crafted SNMP response with a large length value.
Vulnerable Configurations
Part | Description | Count |
---|---|---|
Application | 3 |
Common Weakness Enumeration (CWE)
Common Attack Pattern Enumeration and Classification (CAPEC)
- Buffer Overflow via Environment Variables This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the attacker finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.
- Overflow Buffers Buffer Overflow attacks target improper or missing bounds checking on buffer operations, typically triggered by input injected by an attacker. As a consequence, an attacker is able to write past the boundaries of allocated buffer regions in memory, causing a program crash or potentially redirection of execution as per the attackers' choice.
- Client-side Injection-induced Buffer Overflow This type of attack exploits a buffer overflow vulnerability in targeted client software through injection of malicious content from a custom-built hostile service.
- Filter Failure through Buffer Overflow In this attack, the idea is to cause an active filter to fail by causing an oversized transaction. An attacker may try to feed overly long input strings to the program in an attempt to overwhelm the filter (by causing a buffer overflow) and hoping that the filter does not fail securely (i.e. the user input is let into the system unfiltered).
- MIME Conversion An attacker exploits a weakness in the MIME conversion routine to cause a buffer overflow and gain control over the mail server machine. The MIME system is designed to allow various different information formats to be interpreted and sent via e-mail. Attack points exist when data are converted to MIME compatible format and back.
Nessus
NASL family Fedora Local Security Checks NASL id FEDORA_2011-0524.NASL description Applied patch to fix CVE-2010-4267, remote stack overflow vulnerability (bug #670252). Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues. last seen 2020-06-01 modified 2020-06-02 plugin id 51680 published 2011-01-27 reporter This script is Copyright (C) 2011-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/51680 title Fedora 14 : hplip-3.10.9-14.fc14 (2011-0524) code #%NASL_MIN_LEVEL 80502 # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from Fedora Security Advisory 2011-0524. # include("compat.inc"); if (description) { script_id(51680); script_version("1.9"); script_cvs_date("Date: 2019/08/02 13:32:33"); script_cve_id("CVE-2010-4267"); script_xref(name:"FEDORA", value:"2011-0524"); script_name(english:"Fedora 14 : hplip-3.10.9-14.fc14 (2011-0524)"); script_summary(english:"Checks rpm output for the updated package."); script_set_attribute( attribute:"synopsis", value:"The remote Fedora host is missing a security update." ); script_set_attribute( attribute:"description", value: "Applied patch to fix CVE-2010-4267, remote stack overflow vulnerability (bug #670252). Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues." ); script_set_attribute( attribute:"see_also", value:"https://bugzilla.redhat.com/show_bug.cgi?id=662740" ); # https://lists.fedoraproject.org/pipermail/package-announce/2011-January/053474.html script_set_attribute( attribute:"see_also", value:"http://www.nessus.org/u?d3c3a6bb" ); script_set_attribute(attribute:"solution", value:"Update the affected hplip package."); script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:hplip"); script_set_attribute(attribute:"cpe", value:"cpe:/o:fedoraproject:fedora:14"); script_set_attribute(attribute:"patch_publication_date", value:"2011/01/18"); script_set_attribute(attribute:"plugin_publication_date", value:"2011/01/27"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2011-2019 Tenable Network Security, Inc."); script_family(english:"Fedora Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/RedHat/release", "Host/RedHat/rpm-list"); exit(0); } include("audit.inc"); include("global_settings.inc"); include("rpm.inc"); if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED); release = get_kb_item("Host/RedHat/release"); if (isnull(release) || "Fedora" >!< release) audit(AUDIT_OS_NOT, "Fedora"); os_ver = eregmatch(pattern: "Fedora.*release ([0-9]+)", string:release); if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Fedora"); os_ver = os_ver[1]; if (! ereg(pattern:"^14([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Fedora 14.x", "Fedora " + os_ver); if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING); cpu = get_kb_item("Host/cpu"); if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH); if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Fedora", cpu); flag = 0; if (rpm_check(release:"FC14", reference:"hplip-3.10.9-14.fc14")) flag++; if (flag) { if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get()); else security_hole(0); exit(0); } else { tested = pkg_tests_get(); if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested); else audit(AUDIT_PACKAGE_NOT_INSTALLED, "hplip"); }
NASL family Slackware Local Security Checks NASL id SLACKWARE_SSA_2013-233-01.NASL description New hplip packages are available for Slackware 12.1, 12.2, 13.0, 13.1, 13.37, 14.0, and -current to fix a security issue. last seen 2020-06-01 modified 2020-06-02 plugin id 69431 published 2013-08-22 reporter This script is Copyright (C) 2013-2016 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/69431 title Slackware 12.1 / 12.2 / 13.0 / 13.1 / 13.37 / 14.0 / current : hplip (SSA:2013-233-01) NASL family Red Hat Local Security Checks NASL id REDHAT-RHSA-2011-0154.NASL description Updated hplip packages that fix one security issue are now available for Red Hat Enterprise Linux 5 and 6. The Red Hat Security Response Team has rated this update as having moderate security impact. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available from the CVE link in the References section. Hewlett-Packard Linux Imaging and Printing (HPLIP) provides drivers for Hewlett-Packard printers and multifunction peripherals, and tools for installing, using, and configuring them. A flaw was found in the way certain HPLIP tools discovered devices using the SNMP protocol. If a user ran certain HPLIP tools that search for supported devices using SNMP, and a malicious user is able to send specially crafted SNMP responses, it could cause those HPLIP tools to crash or, possibly, execute arbitrary code with the privileges of the user running them. (CVE-2010-4267) Red Hat would like to thank Sebastian Krahmer of the SuSE Security Team for reporting this issue. Users of hplip should upgrade to these updated packages, which contain a backported patch to correct this issue. last seen 2020-06-01 modified 2020-06-02 plugin id 51563 published 2011-01-18 reporter This script is Copyright (C) 2011-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/51563 title RHEL 5 / 6 : hplip (RHSA-2011:0154) NASL family Ubuntu Local Security Checks NASL id UBUNTU_USN-1051-1.NASL description Sebastian Krahmer discovered that HPLIP incorrectly handled certain long SNMP responses. A remote attacker could send malicious SNMP replies to certain HPLIP tools and cause them to crash or possibly execute arbitrary code. Note that Tenable Network Security has extracted the preceding description block directly from the Ubuntu security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues. last seen 2020-06-01 modified 2020-06-02 plugin id 51673 published 2011-01-26 reporter Ubuntu Security Notice (C) 2011-2019 Canonical, Inc. / NASL script (C) 2011-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/51673 title Ubuntu 8.04 LTS / 9.10 / 10.04 LTS / 10.10 : hplip vulnerability (USN-1051-1) NASL family Debian Local Security Checks NASL id DEBIAN_DSA-2152.NASL description Sebastian Krahmer discovered a buffer overflow in the SNMP discovery code of the HP Linux Printing and Imaging System, which could result in the execution of arbitrary code. last seen 2020-03-17 modified 2011-01-31 plugin id 51817 published 2011-01-31 reporter This script is Copyright (C) 2011-2020 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/51817 title Debian DSA-2152-1 : hplip - buffer overflow NASL family CentOS Local Security Checks NASL id CENTOS_RHSA-2011-0154.NASL description Updated hplip packages that fix one security issue are now available for Red Hat Enterprise Linux 5 and 6. The Red Hat Security Response Team has rated this update as having moderate security impact. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available from the CVE link in the References section. Hewlett-Packard Linux Imaging and Printing (HPLIP) provides drivers for Hewlett-Packard printers and multifunction peripherals, and tools for installing, using, and configuring them. A flaw was found in the way certain HPLIP tools discovered devices using the SNMP protocol. If a user ran certain HPLIP tools that search for supported devices using SNMP, and a malicious user is able to send specially crafted SNMP responses, it could cause those HPLIP tools to crash or, possibly, execute arbitrary code with the privileges of the user running them. (CVE-2010-4267) Red Hat would like to thank Sebastian Krahmer of the SuSE Security Team for reporting this issue. Users of hplip should upgrade to these updated packages, which contain a backported patch to correct this issue. last seen 2020-06-01 modified 2020-06-02 plugin id 53413 published 2011-04-15 reporter This script is Copyright (C) 2011-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/53413 title CentOS 5 : hplip / hplip3 (CESA-2011:0154) NASL family Gentoo Local Security Checks NASL id GENTOO_GLSA-201203-17.NASL description The remote host is affected by the vulnerability described in GLSA-201203-17 (HPLIP: Multiple vulnerabilities) Two vulnerabilities have been found in HPLIP: The last seen 2020-06-01 modified 2020-06-02 plugin id 58382 published 2012-03-19 reporter This script is Copyright (C) 2012-2018 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/58382 title GLSA-201203-17 : HPLIP: Multiple vulnerabilities NASL family SuSE Local Security Checks NASL id SUSE_11_HPLIP-101222.NASL description Specially crafted SNMP replies could cause a buffer overflow in hplip last seen 2020-06-01 modified 2020-06-02 plugin id 51661 published 2011-01-24 reporter This script is Copyright (C) 2011-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/51661 title SuSE 11.1 Security Update : hplip (SAT Patch Number 3735) NASL family Oracle Linux Local Security Checks NASL id ORACLELINUX_ELSA-2011-0154.NASL description From Red Hat Security Advisory 2011:0154 : Updated hplip packages that fix one security issue are now available for Red Hat Enterprise Linux 5 and 6. The Red Hat Security Response Team has rated this update as having moderate security impact. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available from the CVE link in the References section. Hewlett-Packard Linux Imaging and Printing (HPLIP) provides drivers for Hewlett-Packard printers and multifunction peripherals, and tools for installing, using, and configuring them. A flaw was found in the way certain HPLIP tools discovered devices using the SNMP protocol. If a user ran certain HPLIP tools that search for supported devices using SNMP, and a malicious user is able to send specially crafted SNMP responses, it could cause those HPLIP tools to crash or, possibly, execute arbitrary code with the privileges of the user running them. (CVE-2010-4267) Red Hat would like to thank Sebastian Krahmer of the SuSE Security Team for reporting this issue. Users of hplip should upgrade to these updated packages, which contain a backported patch to correct this issue. last seen 2020-06-01 modified 2020-06-02 plugin id 68181 published 2013-07-12 reporter This script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/68181 title Oracle Linux 5 / 6 : hplip (ELSA-2011-0154) NASL family Fedora Local Security Checks NASL id FEDORA_2011-0525.NASL description Applied patch to fix CVE-2010-4267, remote stack overflow vulnerability (bug #670252). Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues. last seen 2020-06-01 modified 2020-06-02 plugin id 51681 published 2011-01-27 reporter This script is Copyright (C) 2011-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/51681 title Fedora 13 : hplip-3.10.9-14.fc13 (2011-0525) NASL family SuSE Local Security Checks NASL id SUSE_11_2_HPLIP-110117.NASL description Specially crafted SNMP replies could cause a buffer overflow in hplip last seen 2020-06-01 modified 2020-06-02 plugin id 53730 published 2011-05-05 reporter This script is Copyright (C) 2011-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/53730 title openSUSE Security Update : hplip (openSUSE-SU-2011:0068-1) NASL family Mandriva Local Security Checks NASL id MANDRIVA_MDVSA-2011-013.NASL description A vulnerability has been found and corrected in hplip : A flaw was found in the way certain HPLIP tools discovered devices using the SNMP protocol. If a user ran certain HPLIP tools that search for supported devices using SNMP, and a malicious user is able to send specially crafted SNMP responses, it could cause those HPLIP tools to crash or, possibly, execute arbitrary code with the privileges of the user running them (CVE-2010-4267). Packages for 2009.0 are provided as of the Extended Maintenance Program. Please visit this link to learn more: http://store.mandriva.com/product_info.php?cPath=149 products_id=490 The updated packages have been patched to correct this issue. last seen 2020-06-01 modified 2020-06-02 plugin id 51805 published 2011-01-28 reporter This script is Copyright (C) 2011-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/51805 title Mandriva Linux Security Advisory : hplip (MDVSA-2011:013) NASL family SuSE Local Security Checks NASL id SUSE_11_3_HPLIP-110117.NASL description Specially crafted SNMP replies could cause a buffer overflow in hplip last seen 2020-06-01 modified 2020-06-02 plugin id 75525 published 2014-06-13 reporter This script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/75525 title openSUSE Security Update : hplip (openSUSE-SU-2011:0068-1) NASL family Scientific Linux Local Security Checks NASL id SL_20110117_HPLIP_ON_SL5_X.NASL description A flaw was found in the way certain HPLIP tools discovered devices using the SNMP protocol. If a user ran certain HPLIP tools that search for supported devices using SNMP, and a malicious user is able to send specially crafted SNMP responses, it could cause those HPLIP tools to crash or, possibly, execute arbitrary code with the privileges of the user running them. (CVE-2010-4267) last seen 2020-06-01 modified 2020-06-02 plugin id 60937 published 2012-08-01 reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/60937 title Scientific Linux Security Update : hplip on SL5.x i386/x86_64
Redhat
advisories |
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
rpms |
|
References
- http://lists.fedoraproject.org/pipermail/package-announce/2011-January/053472.html
- http://lists.fedoraproject.org/pipermail/package-announce/2011-January/053472.html
- http://lists.fedoraproject.org/pipermail/package-announce/2011-January/053474.html
- http://lists.fedoraproject.org/pipermail/package-announce/2011-January/053474.html
- http://lists.opensuse.org/opensuse-security-announce/2011-01/msg00006.html
- http://lists.opensuse.org/opensuse-security-announce/2011-01/msg00006.html
- http://lists.opensuse.org/opensuse-security-announce/2011-04/msg00000.html
- http://lists.opensuse.org/opensuse-security-announce/2011-04/msg00000.html
- http://osvdb.org/70498
- http://osvdb.org/70498
- http://secunia.com/advisories/42939
- http://secunia.com/advisories/42939
- http://secunia.com/advisories/42956
- http://secunia.com/advisories/42956
- http://secunia.com/advisories/43022
- http://secunia.com/advisories/43022
- http://secunia.com/advisories/43068
- http://secunia.com/advisories/43068
- http://secunia.com/advisories/43083
- http://secunia.com/advisories/43083
- http://secunia.com/advisories/43102
- http://secunia.com/advisories/43102
- http://secunia.com/advisories/48441
- http://secunia.com/advisories/48441
- http://security.gentoo.org/glsa/glsa-201203-17.xml
- http://security.gentoo.org/glsa/glsa-201203-17.xml
- http://www.debian.org/security/2011/dsa-2152
- http://www.debian.org/security/2011/dsa-2152
- http://www.mandriva.com/security/advisories?name=MDVSA-2011:013
- http://www.mandriva.com/security/advisories?name=MDVSA-2011:013
- http://www.redhat.com/support/errata/RHSA-2011-0154.html
- http://www.redhat.com/support/errata/RHSA-2011-0154.html
- http://www.securityfocus.com/bid/45833
- http://www.securityfocus.com/bid/45833
- http://www.securitytracker.com/id?1024967
- http://www.securitytracker.com/id?1024967
- http://www.ubuntu.com/usn/USN-1051-1
- http://www.ubuntu.com/usn/USN-1051-1
- http://www.vupen.com/english/advisories/2011/0136
- http://www.vupen.com/english/advisories/2011/0136
- http://www.vupen.com/english/advisories/2011/0160
- http://www.vupen.com/english/advisories/2011/0160
- http://www.vupen.com/english/advisories/2011/0211
- http://www.vupen.com/english/advisories/2011/0211
- http://www.vupen.com/english/advisories/2011/0212
- http://www.vupen.com/english/advisories/2011/0212
- http://www.vupen.com/english/advisories/2011/0228
- http://www.vupen.com/english/advisories/2011/0228
- http://www.vupen.com/english/advisories/2011/0243
- http://www.vupen.com/english/advisories/2011/0243
- https://bugzilla.redhat.com/attachment.cgi?id=468455&action=diff
- https://bugzilla.redhat.com/attachment.cgi?id=468455&action=diff
- https://bugzilla.redhat.com/show_bug.cgi?id=662740
- https://bugzilla.redhat.com/show_bug.cgi?id=662740
- https://exchange.xforce.ibmcloud.com/vulnerabilities/64738
- https://exchange.xforce.ibmcloud.com/vulnerabilities/64738