The compat_alloc_user_space functions in include/asm/compat.h files in the Linux kernel before 2.6.36-rc4-git2 on 64-bit platforms do not properly allocate the userspace memory required for the 32-bit compatibility layer, which allows local users to gain privileges by leveraging the ability of the compat_mc_getsockopt function (aka the MCAST_MSFILTER getsockopt support) to control a certain length value, related to a stack pointer underflow issue, as exploited in the wild in September 2010.
The software 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.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Linux_kernel | Linux | * | 2.6.35.4 |
Linux_kernel | Linux | 2.6.36 | 2.6.36 |
Linux_kernel | Linux | 2.6.36 | 2.6.36 |
Linux_kernel | Linux | 2.6.36 | 2.6.36 |
Linux_kernel | Linux | 2.6.36 | 2.6.36 |
MRG for RHEL-5 | RedHat | kernel-rt-0:2.6.24.7-169.el5rt | * |
Red Hat Enterprise Linux 3 Extended Lifecycle Support | RedHat | kernel-0:2.4.21-66.EL | * |
Red Hat Enterprise Linux 4 | RedHat | kernel-0:2.6.9-89.29.1.EL | * |
Red Hat Enterprise Linux 4.7 Z Stream | RedHat | kernel-0:2.6.9-78.0.33.EL | * |
Red Hat Enterprise Linux 5 | RedHat | kernel-0:2.6.18-194.11.4.el5 | * |
Red Hat Enterprise Linux 5.3.Z - Server Only | RedHat | kernel-0:2.6.18-128.23.2.el5 | * |
Red Hat Enterprise Linux 5.4.Z - Server Only | RedHat | kernel-0:2.6.18-164.25.2.el5 | * |
Red Hat Enterprise Linux 6 | RedHat | kernel-0:2.6.32-71.7.1.el6 | * |
Linux | Ubuntu | hardy | * |
Linux | Ubuntu | jaunty | * |
Linux | Ubuntu | karmic | * |
Linux | Ubuntu | lucid | * |
Linux | Ubuntu | maverick | * |
Linux | Ubuntu | upstream | * |
Linux-fsl-imx51 | Ubuntu | karmic | * |
Linux-fsl-imx51 | Ubuntu | lucid | * |
Linux-fsl-imx51 | Ubuntu | upstream | * |
Linux-source-2.6.15 | Ubuntu | dapper | * |
Linux-source-2.6.15 | Ubuntu | upstream | * |
Linux-ti-omap4 | Ubuntu | maverick | * |
Linux-ti-omap4 | Ubuntu | upstream | * |
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.
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].