Vulnerabilities > CVE-2008-2237 - Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in Openoffice Openoffice.Org
Attack vector
UNKNOWN Attack complexity
UNKNOWN Privileges required
UNKNOWN Confidentiality impact
UNKNOWN Integrity impact
UNKNOWN Availability impact
UNKNOWN Summary
Heap-based buffer overflow in OpenOffice.org (OOo) 2.x before 2.4.2 allows remote attackers to execute arbitrary code via a crafted WMF file associated with a StarOffice/StarSuite document.
Vulnerable Configurations
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 Windows NASL id OPENOFFICE_242.NASL description The version of OpenOffice 2.x installed on the remote host is earlier than 2.4.2. Such versions are affected by several issues : - Specially crafted WMF files can lead to heap-based overflows and arbitrary code execution (CVE-2008-2237). - Specially crafted EMF files can lead to heap-based overflows and arbitrary code execution (CVE-2008-2238). last seen 2020-06-01 modified 2020-06-02 plugin id 34510 published 2008-10-29 reporter This script is Copyright (C) 2008-2018 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/34510 title OpenOffice < 2.4.2 WMF and EMF File Handling Buffer Overflows code # # (C) Tenable Network Security, Inc. # include("compat.inc"); if (description) { script_id(34510); script_version("1.11"); script_cve_id("CVE-2008-2237", "CVE-2008-2238"); script_bugtraq_id(31962); script_xref(name:"Secunia", value:"32419"); script_name(english:"OpenOffice < 2.4.2 WMF and EMF File Handling Buffer Overflows"); script_summary(english:"Checks version of OpenOffice"); script_set_attribute(attribute:"synopsis", value: "The remote Windows host has a program affected by multiple buffer overflows." ); script_set_attribute(attribute:"description", value: "The version of OpenOffice 2.x installed on the remote host is earlier than 2.4.2. Such versions are affected by several issues : - Specially crafted WMF files can lead to heap-based overflows and arbitrary code execution (CVE-2008-2237). - Specially crafted EMF files can lead to heap-based overflows and arbitrary code execution (CVE-2008-2238)." ); script_set_attribute(attribute:"see_also", value:"http://www.openoffice.org/security/cves/CVE-2008-2237.html" ); script_set_attribute(attribute:"see_also", value:"http://www.openoffice.org/security/cves/CVE-2008-2238.html" ); script_set_attribute(attribute:"solution", value: "Upgrade to OpenOffice version 2.4.2 or later." ); script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C"); script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C"); script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available"); script_set_attribute(attribute:"exploit_available", value:"false"); script_cwe_id(119); script_set_attribute(attribute:"plugin_publication_date", value: "2008/10/29"); script_cvs_date("Date: 2018/07/16 14:09:15"); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"cpe:/a:sun:openoffice.org"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_family(english:"Windows"); script_copyright(english:"This script is Copyright (C) 2008-2018 Tenable Network Security, Inc."); script_dependencies("openoffice_installed.nasl"); script_require_keys("SMB/OpenOffice/Build"); exit(0); } # build = get_kb_item("SMB/OpenOffice/Build"); if (build) { matches = eregmatch(string:build, pattern:"([0-9]+[a-z][0-9]+)\(Build:([0-9]+)\)"); if (!isnull(matches)) { buildid = int(matches[2]); if (buildid > 8950 && buildid < 9364 && matches[1] !~ "^300m") security_hole(get_kb_item("SMB/transport")); } }
NASL family FreeBSD Local Security Checks NASL id FREEBSD_PKG_842BAFDDBE2F11DDA5780030843D3802.NASL description The OpenOffice Team reports : A security vulnerability with the way OpenOffice 2.x process WMF files may allow a remote unprivileged user who provides a StarOffice/StarSuite document that is opened by a local user to execute arbitrary commands on the system with the privileges of the user running StarOffice/StarSuite. No working exploit is known right now. A security vulnerability with the way OpenOffice 2.x process EMF files may allow a remote unprivileged user who provides a StarOffice/StarSuite document that is opened by a local user to execute arbitrary commands on the system with the privileges of the user running StarOffice/StarSuite. No working exploit is known right now. last seen 2020-06-01 modified 2020-06-02 plugin id 34979 published 2008-12-01 reporter This script is Copyright (C) 2008-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/34979 title FreeBSD : openoffice -- arbitrary code execution vulnerabilities (842bafdd-be2f-11dd-a578-0030843d3802) code #%NASL_MIN_LEVEL 80502 # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from the FreeBSD VuXML database : # # Copyright 2003-2018 Jacques Vidrine and contributors # # Redistribution and use in source (VuXML) and 'compiled' forms (SGML, # HTML, PDF, PostScript, RTF and so forth) with or without modification, # are permitted provided that the following conditions are met: # 1. Redistributions of source code (VuXML) must retain the above # copyright notice, this list of conditions and the following # disclaimer as the first lines of this file unmodified. # 2. Redistributions in compiled form (transformed to other DTDs, # published online in any format, converted to PDF, PostScript, # RTF and other formats) must reproduce the above copyright # notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # # THIS DOCUMENTATION IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, # OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS DOCUMENTATION, # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # include("compat.inc"); if (description) { script_id(34979); script_version("1.14"); script_cvs_date("Date: 2019/08/02 13:32:39"); script_cve_id("CVE-2008-2237", "CVE-2008-2238"); script_name(english:"FreeBSD : openoffice -- arbitrary code execution vulnerabilities (842bafdd-be2f-11dd-a578-0030843d3802)"); script_summary(english:"Checks for updated packages in pkg_info output"); script_set_attribute( attribute:"synopsis", value: "The remote FreeBSD host is missing one or more security-related updates." ); script_set_attribute( attribute:"description", value: "The OpenOffice Team reports : A security vulnerability with the way OpenOffice 2.x process WMF files may allow a remote unprivileged user who provides a StarOffice/StarSuite document that is opened by a local user to execute arbitrary commands on the system with the privileges of the user running StarOffice/StarSuite. No working exploit is known right now. A security vulnerability with the way OpenOffice 2.x process EMF files may allow a remote unprivileged user who provides a StarOffice/StarSuite document that is opened by a local user to execute arbitrary commands on the system with the privileges of the user running StarOffice/StarSuite. No working exploit is known right now." ); script_set_attribute( attribute:"see_also", value:"http://www.openoffice.org/security/cves/CVE-2008-2237.html" ); script_set_attribute( attribute:"see_also", value:"http://www.openoffice.org/security/cves/CVE-2008-2238.html" ); # https://vuxml.freebsd.org/freebsd/842bafdd-be2f-11dd-a578-0030843d3802.html script_set_attribute( attribute:"see_also", value:"http://www.nessus.org/u?80d9a4e7" ); script_set_attribute(attribute:"solution", value:"Update the affected packages."); script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C"); script_cwe_id(119); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:freebsd:freebsd:openoffice.org-2"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:freebsd:freebsd:openoffice.org-2-RC"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:freebsd:freebsd:openoffice.org-2-devel"); script_set_attribute(attribute:"cpe", value:"cpe:/o:freebsd:freebsd"); script_set_attribute(attribute:"vuln_publication_date", value:"2008/10/29"); script_set_attribute(attribute:"patch_publication_date", value:"2008/11/29"); script_set_attribute(attribute:"plugin_publication_date", value:"2008/12/01"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2008-2019 and is owned by Tenable, Inc. or an Affiliate thereof."); script_family(english:"FreeBSD Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/FreeBSD/release", "Host/FreeBSD/pkg_info"); exit(0); } include("audit.inc"); include("freebsd_package.inc"); if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED); if (!get_kb_item("Host/FreeBSD/release")) audit(AUDIT_OS_NOT, "FreeBSD"); if (!get_kb_item("Host/FreeBSD/pkg_info")) audit(AUDIT_PACKAGE_LIST_MISSING); flag = 0; if (pkg_test(save_report:TRUE, pkg:"openoffice.org-2>=2.4<2.4.2")) flag++; if (pkg_test(save_report:TRUE, pkg:"openoffice.org-2>=2.4.20040402")) flag++; if (pkg_test(save_report:TRUE, pkg:"openoffice.org-2-RC>=2.4<2.4.2")) flag++; if (pkg_test(save_report:TRUE, pkg:"openoffice.org-2-RC>=2.4.20040402")) flag++; if (pkg_test(save_report:TRUE, pkg:"openoffice.org-2-devel>=2.4<2.4.2")) flag++; if (pkg_test(save_report:TRUE, pkg:"openoffice.org-2-devel>=2.4.20040402")) flag++; if (flag) { if (report_verbosity > 0) security_hole(port:0, extra:pkg_report_get()); else security_hole(0); exit(0); } else audit(AUDIT_HOST_NOT, "affected");
NASL family SuSE Local Security Checks NASL id SUSE_OPENOFFICE_ORG-5738.NASL description This update fixes an integer overflow in the WMF handler (CVE-2008-2237) and multiple bugs in the EMF parser (CVE-2008-2238). Additionally multiple non-security fixes were added. last seen 2020-06-01 modified 2020-06-02 plugin id 34843 published 2008-11-21 reporter This script is Copyright (C) 2008-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/34843 title openSUSE 10 Security Update : OpenOffice_org (OpenOffice_org-5738) code #%NASL_MIN_LEVEL 80502 # # (C) Tenable Network Security, Inc. # # The descriptive text and package checks in this plugin were # extracted from openSUSE Security Update OpenOffice_org-5738. # # The text description of this plugin is (C) SUSE LLC. # include("compat.inc"); if (description) { script_id(34843); script_version ("1.9"); script_cvs_date("Date: 2019/10/25 13:36:32"); script_cve_id("CVE-2008-2237", "CVE-2008-2238"); script_name(english:"openSUSE 10 Security Update : OpenOffice_org (OpenOffice_org-5738)"); script_summary(english:"Check for the OpenOffice_org-5738 patch"); script_set_attribute( attribute:"synopsis", value:"The remote openSUSE host is missing a security update." ); script_set_attribute( attribute:"description", value: "This update fixes an integer overflow in the WMF handler (CVE-2008-2237) and multiple bugs in the EMF parser (CVE-2008-2238). Additionally multiple non-security fixes were added." ); script_set_attribute( attribute:"solution", value:"Update the affected OpenOffice_org packages." ); script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C"); script_cwe_id(119); script_set_attribute(attribute:"plugin_type", value:"local"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-af"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-ar"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-base"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-be-BY"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-bg"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-ca"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-calc"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-cs"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-cy"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-da"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-de"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-devel"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-draw"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-el"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-en-GB"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-es"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-et"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-fi"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-filters"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-fr"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-galleries"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-gnome"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-gu-IN"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-hi-IN"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-hr"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-hu"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-impress"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-it"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-ja"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-kde"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-km"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-ko"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-lt"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-mailmerge"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-math"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-mk"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-mono"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-nb"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-nl"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-nn"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-officebean"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-pa-IN"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-pl"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-pt"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-pt-BR"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-pyuno"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-ru"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-rw"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-sdk"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-sk"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-sl"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-sr-CS"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-st"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-sv"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-testtool"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-tr"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-ts"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-vi"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-writer"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-xh"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-zh-CN"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-zh-TW"); script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:OpenOffice_org-zu"); script_set_attribute(attribute:"cpe", value:"cpe:/o:novell:opensuse:10.2"); script_set_attribute(attribute:"cpe", value:"cpe:/o:novell:opensuse:10.3"); script_set_attribute(attribute:"patch_publication_date", value:"2008/10/30"); script_set_attribute(attribute:"plugin_publication_date", value:"2008/11/21"); script_end_attributes(); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2008-2019 Tenable Network Security, Inc."); script_family(english:"SuSE Local Security Checks"); script_dependencies("ssh_get_info.nasl"); script_require_keys("Host/local_checks_enabled", "Host/SuSE/release", "Host/SuSE/rpm-list", "Host/cpu"); 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/SuSE/release"); if (isnull(release) || release =~ "^(SLED|SLES)") audit(AUDIT_OS_NOT, "openSUSE"); if (release !~ "^(SUSE10\.2|SUSE10\.3)$") audit(AUDIT_OS_RELEASE_NOT, "openSUSE", "10.2 / 10.3", release); if (!get_kb_item("Host/SuSE/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING); ourarch = get_kb_item("Host/cpu"); if (!ourarch) audit(AUDIT_UNKNOWN_ARCH); if (ourarch !~ "^(i586|i686|x86_64)$") audit(AUDIT_ARCH_NOT, "i586 / i686 / x86_64", ourarch); flag = 0; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-af-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-ar-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-be-BY-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-bg-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-ca-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-cs-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-cy-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-da-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-de-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-el-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-en-GB-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-es-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-et-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-fi-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-fr-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-galleries-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-gnome-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-gu-IN-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-hi-IN-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-hr-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-hu-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-it-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-ja-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-kde-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-km-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-ko-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-lt-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-mk-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-mono-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-nb-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-nl-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-nn-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-officebean-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-pa-IN-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-pl-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-pt-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-pt-BR-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-ru-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-rw-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-sdk-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-sk-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-sl-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-sr-CS-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-st-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-sv-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-tr-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-ts-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-vi-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-xh-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-zh-CN-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-zh-TW-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.2", reference:"OpenOffice_org-zu-2.0.4-38.14") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-af-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-ar-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-base-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-be-BY-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-bg-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-ca-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-calc-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-cs-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-cy-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-da-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-de-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-devel-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-draw-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-el-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-en-GB-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-es-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-et-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-fi-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-filters-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-fr-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-gnome-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-gu-IN-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-hi-IN-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-hr-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-hu-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-impress-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-it-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-ja-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-kde-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-km-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-ko-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-lt-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-mailmerge-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-math-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-mk-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-mono-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-nb-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-nl-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-nn-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-officebean-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-pa-IN-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-pl-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-pt-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-pt-BR-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-pyuno-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-ru-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-rw-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-sdk-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-sk-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-sl-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-sr-CS-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-st-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-sv-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-testtool-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-tr-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-ts-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-vi-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-writer-2.3.0.1.2-10.7") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-xh-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-zh-CN-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-zh-TW-2.3.0.1.2-2.4") ) flag++; if ( rpm_check(release:"SUSE10.3", reference:"OpenOffice_org-zu-2.3.0.1.2-2.4") ) 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, "OOo"); }
NASL family SuSE Local Security Checks NASL id SUSE_OPENOFFICE_ORG-5740.NASL description This update fixes an integer overflow in the WMF handler (CVE-2008-2237) and multiple bugs in the EMF parser (CVE-2008-2238). Additionally multiple non-security bugs were fixed. last seen 2020-06-01 modified 2020-06-02 plugin id 34844 published 2008-11-21 reporter This script is Copyright (C) 2008-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/34844 title SuSE 10 Security Update : OpenOffice_org (ZYPP Patch Number 5740) NASL family Gentoo Local Security Checks NASL id GENTOO_GLSA-200812-13.NASL description The remote host is affected by the vulnerability described in GLSA-200812-13 (OpenOffice.org: Multiple vulnerabilities) Two heap-based buffer overflows when processing WMF files (CVE-2008-2237) and EMF files (CVE-2008-2238) were discovered. Dmitry E. Oboukhov also reported an insecure temporary file usage within the senddoc script (CVE-2008-4937). Impact : A remote attacker could entice a user to open a specially crafted document, resulting in the remote execution of arbitrary code. A local attacker could perform symlink attacks to overwrite arbitrary files on the system. Both cases happen with the privileges of the user running the application. Workaround : There is no known workaround at this time. last seen 2020-06-01 modified 2020-06-02 plugin id 35101 published 2008-12-15 reporter This script is Copyright (C) 2008-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/35101 title GLSA-200812-13 : OpenOffice.org: Multiple vulnerabilities NASL family Oracle Linux Local Security Checks NASL id ORACLELINUX_ELSA-2008-0939.NASL description From Red Hat Security Advisory 2008:0939 : Updated openoffice.org packages that correct security issues are now available for Red Hat Enterprise Linux 3, 4, and 5. This update has been rated as having important security impact by the Red Hat Security Response Team. OpenOffice.org is an office productivity suite that includes desktop applications such as a word processor, spreadsheet, presentation manager, formula editor, and drawing program. SureRun Security Team discovered an integer overflow flaw leading to a heap buffer overflow in the Windows Metafile (WMF) image format parser. An attacker could create a carefully crafted document containing a malicious WMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2237) Multiple integer overflow flaws were found in the Enhanced Windows Metafile (EMF) parser. An attacker could create a carefully crafted document containing a malicious EMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2238) All users of OpenOffice.org are advised to upgrade to these updated packages, which contain backported patches that correct these issues. last seen 2020-06-01 modified 2020-06-02 plugin id 67756 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/67756 title Oracle Linux 3 / 4 : openoffice.org (ELSA-2008-0939) NASL family Red Hat Local Security Checks NASL id REDHAT-RHSA-2008-0939.NASL description Updated openoffice.org packages that correct security issues are now available for Red Hat Enterprise Linux 3, 4, and 5. This update has been rated as having important security impact by the Red Hat Security Response Team. OpenOffice.org is an office productivity suite that includes desktop applications such as a word processor, spreadsheet, presentation manager, formula editor, and drawing program. SureRun Security Team discovered an integer overflow flaw leading to a heap buffer overflow in the Windows Metafile (WMF) image format parser. An attacker could create a carefully crafted document containing a malicious WMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2237) Multiple integer overflow flaws were found in the Enhanced Windows Metafile (EMF) parser. An attacker could create a carefully crafted document containing a malicious EMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2238) All users of OpenOffice.org are advised to upgrade to these updated packages, which contain backported patches that correct these issues. last seen 2020-06-01 modified 2020-06-02 plugin id 34696 published 2008-11-05 reporter This script is Copyright (C) 2008-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/34696 title RHEL 3 / 4 / 5 : openoffice.org (RHSA-2008:0939) NASL family Ubuntu Local Security Checks NASL id UBUNTU_USN-677-1.NASL description Multiple memory overflow flaws were discovered in OpenOffice.org last seen 2020-06-01 modified 2020-06-02 plugin id 36611 published 2009-04-23 reporter Ubuntu Security Notice (C) 2008-2019 Canonical, Inc. / NASL script (C) 2009-2018 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/36611 title Ubuntu 6.06 LTS / 7.10 / 8.04 LTS / 8.10 : openoffice.org, openoffice.org-amd64 vulnerabilities (USN-677-1) NASL family Ubuntu Local Security Checks NASL id UBUNTU_USN-677-2.NASL description USN-677-1 fixed vulnerabilities in OpenOffice.org. The changes required that openoffice.org-l10n also be updated for the new version in Ubuntu 8.04 LTS. Multiple memory overflow flaws were discovered in OpenOffice.org last seen 2020-06-01 modified 2020-06-02 plugin id 37546 published 2009-04-23 reporter Ubuntu Security Notice (C) 2008-2019 Canonical, Inc. / NASL script (C) 2009-2018 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/37546 title Ubuntu 8.04 LTS : openoffice.org-l10n update (USN-677-2) NASL family Debian Local Security Checks NASL id DEBIAN_DSA-1661.NASL description Several vulnerabilities have been discovered in the OpenOffice.org office suite : - CVE-2008-2237 The SureRun Security team discovered a bug in the WMF file parser that can be triggered by manipulated WMF files and can lead to heap overflows and arbitrary code execution. - CVE-2008-2238 An anonymous researcher working with the iDefense discovered a bug in the EMF file parser that can be triggered by manipulated EMF files and can lead to heap overflows and arbitrary code execution. last seen 2020-06-01 modified 2020-06-02 plugin id 34669 published 2008-10-31 reporter This script is Copyright (C) 2008-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/34669 title Debian DSA-1661-1 : openoffice.org - several vulnerabilities NASL family Fedora Local Security Checks NASL id FEDORA_2008-9333.NASL description A security release to address: - CVE-2008-2237: Manipulated WMF files - CVE-2008-2238: Manipulated EMF files as described at http://www.openoffice.org/security/bulletin.html 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 34683 published 2008-11-03 reporter This script is Copyright (C) 2008-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/34683 title Fedora 8 : openoffice.org-2.3.0-6.17.fc8 (2008-9333) NASL family Fedora Local Security Checks NASL id FEDORA_2008-9313.NASL description Security update to address - CVE-2008-2237: Manipulated WMF files - CVE-2008-2238: Manipulated EMF files as described at http://www.openoffice.org/security/bulletin.html 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 34681 published 2008-11-03 reporter This script is Copyright (C) 2008-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/34681 title Fedora 9 : openoffice.org-2.4.2-18.1.fc9 (2008-9313) NASL family SuSE Local Security Checks NASL id SUSE_11_0_OPENOFFICE_ORG-081030.NASL description This update fixes an integer overflow in the WMF handler (CVE-2008-2237) and multiple bugs in the EMF parser (CVE-2008-2238). Additionally multiple non-security fixes were added. last seen 2020-06-01 modified 2020-06-02 plugin id 39899 published 2009-07-21 reporter This script is Copyright (C) 2009-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/39899 title openSUSE Security Update : OpenOffice_org (OpenOffice_org-288) NASL family Mandriva Local Security Checks NASL id MANDRIVA_MDVSA-2009-006.NASL description Heap-based overflow on functions to manipulate WMF and EMF files in OpenOffice.org documments enables remote attackers to execute arbitrary code on documments holding certain crafted either WMF or EMF files (CVE-2008-2237) (CVE-2008-2238). This update provide the fix for these security issues and further openoffice.org-voikko package has been updated as it depends on openoffice.org packages. last seen 2020-06-01 modified 2020-06-02 plugin id 36505 published 2009-04-23 reporter This script is Copyright (C) 2009-2019 Tenable Network Security, Inc. source https://www.tenable.com/plugins/nessus/36505 title Mandriva Linux Security Advisory : openoffice.org (MDVSA-2009:006) NASL family Scientific Linux Local Security Checks NASL id SL_20081105_OPENOFFICE_ORG_ON_SL3_X.NASL description SureRun Security Team discovered an integer overflow flaw leading to a heap buffer overflow in the Windows Metafile (WMF) image format parser. An attacker could create a carefully crafted document containing a malicious WMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2237) Multiple integer overflow flaws were found in the Enhanced Windows Metafile (EMF) parser. An attacker could create a carefully crafted document containing a malicious EMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2238) last seen 2020-06-01 modified 2020-06-02 plugin id 60490 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/60490 title Scientific Linux Security Update : openoffice.org on SL3.x, SL4.x, SL5.x i386/x86_64 NASL family CentOS Local Security Checks NASL id CENTOS_RHSA-2008-0939.NASL description Updated openoffice.org packages that correct security issues are now available for Red Hat Enterprise Linux 3, 4, and 5. This update has been rated as having important security impact by the Red Hat Security Response Team. OpenOffice.org is an office productivity suite that includes desktop applications such as a word processor, spreadsheet, presentation manager, formula editor, and drawing program. SureRun Security Team discovered an integer overflow flaw leading to a heap buffer overflow in the Windows Metafile (WMF) image format parser. An attacker could create a carefully crafted document containing a malicious WMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2237) Multiple integer overflow flaws were found in the Enhanced Windows Metafile (EMF) parser. An attacker could create a carefully crafted document containing a malicious EMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2238) All users of OpenOffice.org are advised to upgrade to these updated packages, which contain backported patches that correct these issues. last seen 2020-06-01 modified 2020-06-02 plugin id 36765 published 2009-04-23 reporter This script is Copyright (C) 2009-2019 and is owned by Tenable, Inc. or an Affiliate thereof. source https://www.tenable.com/plugins/nessus/36765 title CentOS 3 / 5 : openoffice.org (CESA-2008:0939) NASL family Scientific Linux Local Security Checks NASL id SL_20081105_OPENOFFICE_ORG2_ON_SL45__46__47.NASL description SureRun Security Team discovered an integer overflow flaw leading to a heap buffer overflow in the Windows Metafile (WMF) image format parser. An attacker could create a carefully crafted document containing a malicious WMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2237) Multiple integer overflow flaws were found in the Enhanced Windows Metafile (EMF) parser. An attacker could create a carefully crafted document containing a malicious EMF file that could cause OpenOffice.org to crash, or, possibly, execute arbitrary code if opened by a victim. (CVE-2008-2238) last seen 2020-06-01 modified 2020-06-02 plugin id 60489 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/60489 title Scientific Linux Security Update : openoffice.org2 on SL45, 46, 47 i386/x86_64
Oval
accepted | 2013-04-29T04:08:41.925-04:00 | ||||||||||||||||||||||||||||||||
class | vulnerability | ||||||||||||||||||||||||||||||||
contributors |
| ||||||||||||||||||||||||||||||||
definition_extensions |
| ||||||||||||||||||||||||||||||||
description | Heap-based buffer overflow in OpenOffice.org (OOo) 2.x before 2.4.2 allows remote attackers to execute arbitrary code via a crafted WMF file associated with a StarOffice/StarSuite document. | ||||||||||||||||||||||||||||||||
family | unix | ||||||||||||||||||||||||||||||||
id | oval:org.mitre.oval:def:10784 | ||||||||||||||||||||||||||||||||
status | accepted | ||||||||||||||||||||||||||||||||
submitted | 2010-07-09T03:56:16-04:00 | ||||||||||||||||||||||||||||||||
title | Heap-based buffer overflow in OpenOffice.org (OOo) 2.x before 2.4.2 allows remote attackers to execute arbitrary code via a crafted WMF file associated with a StarOffice/StarSuite document. | ||||||||||||||||||||||||||||||||
version | 27 |
Redhat
advisories |
| ||||
rpms |
|
Seebug
bulletinFamily | exploit |
description | BUGTRAQ ID: 31962 CVE ID:CVE-2008-2237 CVE-2008-2238 CNCVE ID:CNCVE-20082237 CNCVE-20082238 OpenOffice是一款开放源代码的文字处理程序。 OpenOffice处理WMF和EMF文件存在缓冲区溢出,远程攻击者可以利用漏洞以应用程序权限执行任意指令。 目前没有详细的漏洞细节提供。构建特殊的WMF和EMF文件可触发基于堆的溢出。 OpenOffice OpenOffice 2.4.1 OpenOffice OpenOffice 2.3.1 OpenOffice OpenOffice 2.3 OpenOffice OpenOffice 2.2.1 OpenOffice OpenOffice 2.2 OpenOffice OpenOffice 2.0.4 OpenOffice OpenOffice 2.0.3 -1 OpenOffice OpenOffice 2.0.3 OpenOffice OpenOffice 2.0.2 OpenOffice OpenOffice 2.0.1 OpenOffice OpenOffice 2.0 Beta OpenOffice OpenOffice 2.4 OpenOffice OpenOffice 2.2 OpenOffice OpenOffice 2.1 Debian Linux 4.0 sparc Debian Linux 4.0 s/390 Debian Linux 4.0 powerpc Debian Linux 4.0 mipsel Debian Linux 4.0 mips Debian Linux 4.0 m68k Debian Linux 4.0 ia-64 Debian Linux 4.0 ia-32 Debian Linux 4.0 hppa Debian Linux 4.0 arm Debian Linux 4.0 amd64 Debian Linux 4.0 alpha Debian Linux 4.0 OpenOffice.org 2.4.2版本已经修正此漏洞,建议用户联系供应商获得最新程序: <a href=http://www.openoffice.org/ target=_blank>http://www.openoffice.org/</a> |
id | SSV:4372 |
last seen | 2017-11-19 |
modified | 2008-10-31 |
published | 2008-10-31 |
reporter | Root |
title | OpenOffice WMF和EMF文件处理堆缓冲区溢出漏洞 |
References
- http://lists.opensuse.org/opensuse-security-announce/2008-11/msg00002.html
- http://lists.opensuse.org/opensuse-security-announce/2008-11/msg00002.html
- http://neowiki.neooffice.org/index.php/NeoOffice_2.2.5_Patch_3_New_Features#Security_fixes
- http://neowiki.neooffice.org/index.php/NeoOffice_2.2.5_Patch_3_New_Features#Security_fixes
- http://secunia.com/advisories/32419
- http://secunia.com/advisories/32419
- http://secunia.com/advisories/32461
- http://secunia.com/advisories/32461
- http://secunia.com/advisories/32463
- http://secunia.com/advisories/32463
- http://secunia.com/advisories/32489
- http://secunia.com/advisories/32489
- http://secunia.com/advisories/32676
- http://secunia.com/advisories/32676
- http://secunia.com/advisories/32856
- http://secunia.com/advisories/32856
- http://secunia.com/advisories/32872
- http://secunia.com/advisories/32872
- http://secunia.com/advisories/33140
- http://secunia.com/advisories/33140
- http://security.gentoo.org/glsa/glsa-200812-13.xml
- http://security.gentoo.org/glsa/glsa-200812-13.xml
- http://sunsolve.sun.com/search/document.do?assetkey=1-26-242627-1
- http://sunsolve.sun.com/search/document.do?assetkey=1-26-242627-1
- http://www.debian.org/security/2008/dsa-1661
- http://www.debian.org/security/2008/dsa-1661
- http://www.openoffice.org/security/cves/CVE-2008-2237.html
- http://www.openoffice.org/security/cves/CVE-2008-2237.html
- http://www.redhat.com/support/errata/RHSA-2008-0939.html
- http://www.redhat.com/support/errata/RHSA-2008-0939.html
- http://www.securityfocus.com/bid/31962
- http://www.securityfocus.com/bid/31962
- http://www.securitytracker.com/id?1021120
- http://www.securitytracker.com/id?1021120
- http://www.ubuntu.com/usn/usn-677-1
- http://www.ubuntu.com/usn/usn-677-1
- http://www.ubuntu.com/usn/usn-677-2
- http://www.ubuntu.com/usn/usn-677-2
- http://www.vupen.com/english/advisories/2008/2947
- http://www.vupen.com/english/advisories/2008/2947
- http://www.vupen.com/english/advisories/2008/3103
- http://www.vupen.com/english/advisories/2008/3103
- https://exchange.xforce.ibmcloud.com/vulnerabilities/46165
- https://exchange.xforce.ibmcloud.com/vulnerabilities/46165
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A10784
- https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A10784
- https://www.redhat.com/archives/fedora-package-announce/2008-October/msg00905.html
- https://www.redhat.com/archives/fedora-package-announce/2008-October/msg00905.html
- https://www.redhat.com/archives/fedora-package-announce/2008-October/msg00923.html
- https://www.redhat.com/archives/fedora-package-announce/2008-October/msg00923.html