CVE Vulnerabilities

CVE-2004-1267

Improper Restriction of Operations within the Bounds of a Memory Buffer

Published: Jan 10, 2005 | Modified: Oct 03, 2018
CVSS 3.x
N/A
Source:
NVD
CVSS 2.x
6.5 MEDIUM
AV:N/AC:L/Au:S/C:P/I:P/A:P
RedHat/V2
RedHat/V3
Ubuntu

Buffer overflow in the ParseCommand function in hpgl-input.c in the hpgltops program for CUPS 1.1.22 allows remote attackers to execute arbitrary code via a crafted HPGL file.

Weakness

The product performs operations on a memory buffer, but it can read from or write to a memory location that is outside of the intended boundary of the buffer.

Affected Software

Name Vendor Start Version End Version
Cups Easy_software_products 1.0.4 1.0.4
Cups Easy_software_products 1.0.4_8 1.0.4_8
Cups Easy_software_products 1.1.1 1.1.1
Cups Easy_software_products 1.1.4 1.1.4
Cups Easy_software_products 1.1.4_2 1.1.4_2
Cups Easy_software_products 1.1.4_3 1.1.4_3
Cups Easy_software_products 1.1.4_5 1.1.4_5
Cups Easy_software_products 1.1.6 1.1.6
Cups Easy_software_products 1.1.7 1.1.7
Cups Easy_software_products 1.1.10 1.1.10
Cups Easy_software_products 1.1.12 1.1.12
Cups Easy_software_products 1.1.13 1.1.13
Cups Easy_software_products 1.1.14 1.1.14
Cups Easy_software_products 1.1.15 1.1.15
Cups Easy_software_products 1.1.16 1.1.16
Cups Easy_software_products 1.1.17 1.1.17
Cups Easy_software_products 1.1.18 1.1.18
Cups Easy_software_products 1.1.19 1.1.19
Cups Easy_software_products 1.1.19_rc5 1.1.19_rc5
Cups Easy_software_products 1.1.20 1.1.20
Cups Easy_software_products 1.1.21 1.1.21
Cups Easy_software_products 1.1.22_rc1 1.1.22_rc1
Red Hat Enterprise Linux 3 RedHat cups-1:1.1.17-13.3.22 *
Red Hat Enterprise Linux 4 RedHat cups-1:1.1.22-0.rc1.9.6 *
Cupsys Ubuntu dapper *
Cupsys Ubuntu devel *
Cupsys Ubuntu edgy *
Cupsys Ubuntu feisty *

Extended Description

Certain languages allow direct addressing of memory locations and do not automatically ensure that these locations are valid for the memory buffer that is being referenced. This can cause read or write operations to be performed on memory locations that may be associated with other variables, data structures, or internal program data. As a result, an attacker may be able to execute arbitrary code, alter the intended control flow, read sensitive information, or cause the system to crash.

Potential Mitigations

  • Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

  • For example, many languages that perform their own memory management, such as Java and Perl, are not subject to buffer overflows. Other languages, such as Ada and C#, typically provide overflow protection, but the protection can be disabled by the programmer.

  • Be wary that a language’s interface to native code may still be subject to overflows, even if the language itself is theoretically safe.

  • Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

  • Examples include the Safe C String Library (SafeStr) by Messier and Viega [REF-57], and the Strsafe.h library from Microsoft [REF-56]. These libraries provide safer versions of overflow-prone string-handling functions.

  • Run or compile the software using features or extensions that automatically provide a protection mechanism that mitigates or eliminates buffer overflows.

  • For example, certain compilers and extensions provide automatic buffer overflow detection mechanisms that are built into the compiled code. Examples include the Microsoft Visual Studio /GS flag, Fedora/Red Hat FORTIFY_SOURCE GCC flag, StackGuard, and ProPolice.

  • Consider adhering to the following rules when allocating and managing an application’s memory:

  • Run or compile the software using features or extensions that randomly arrange the positions of a program’s executable and libraries in memory. Because this makes the addresses unpredictable, it can prevent an attacker from reliably jumping to exploitable code.

  • Examples include Address Space Layout Randomization (ASLR) [REF-58] [REF-60] and Position-Independent Executables (PIE) [REF-64].

References