CVE-2009-2695 - Improper Restriction of Operations within the Bounds of a Memory Buffer

Severity

72%

Complexity

39%

Confidentiality

165%

The Linux kernel before 2.6.31-rc7 does not properly prevent mmap operations that target page zero and other low memory addresses, which allows local users to gain privileges by exploiting NULL pointer dereference vulnerabilities, related to (1) the default configuration of the allow_unconfined_mmap_low boolean in SELinux on Red Hat Enterprise Linux (RHEL) 5, (2) an error that causes allow_unconfined_mmap_low to be ignored in the unconfined_t domain, (3) lack of a requirement for the CAP_SYS_RAWIO capability for these mmap operations, and (4) interaction between the mmap_min_addr protection mechanism and certain application programs.

The Linux kernel before 2.6.31-rc7 does not properly prevent mmap operations that target page zero and other low memory addresses, which allows local users to gain privileges by exploiting NULL pointer dereference vulnerabilities, related to (1) the default configuration of the allow_unconfined_mmap_low boolean in SELinux on Red Hat Enterprise Linux (RHEL) 5, (2) an error that causes allow_unconfined_mmap_low to be ignored in the unconfined_t domain, (3) lack of a requirement for the CAP_SYS_RAWIO capability for these mmap operations, and (4) interaction between the mmap_min_addr protection mechanism and certain application programs.

CVSS 2.0 Base Score 7.2. CVSS Attack Vector: local. CVSS Attack Complexity: low. CVSS Vector: (AV:L/AC:L/Au:N/C:C/I:C/A:C).

Demo Examples

Improper Restriction of Operations within the Bounds of a Memory Buffer

CWE-119

This example takes an IP address from a user, verifies that it is well formed and then looks up the hostname and copies it into a buffer.


               
}
strcpy(hostname, hp->h_name);/*routine that ensures user_supplied_addr is in the right format for conversion */

This function allocates a buffer of 64 bytes to store the hostname, however there is no guarantee that the hostname will not be larger than 64 bytes. If an attacker specifies an address which resolves to a very large hostname, then we may overwrite sensitive data or even relinquish control flow to the attacker.

Note that this example also contains an unchecked return value (CWE-252) that can lead to a NULL pointer dereference (CWE-476).

Improper Restriction of Operations within the Bounds of a Memory Buffer

CWE-119

This example applies an encoding procedure to an input string and stores it into a buffer.


               
}
return dst_buf;
die("user string too long, die evil hacker!");
else dst_buf[dst_index++] = user_supplied_string[i];
dst_buf[dst_index++] = ';';
/* encode to < */

The programmer attempts to encode the ampersand character in the user-controlled string, however the length of the string is validated before the encoding procedure is applied. Furthermore, the programmer assumes encoding expansion will only expand a given character by a factor of 4, while the encoding of the ampersand expands by 5. As a result, when the encoding procedure expands the string it is possible to overflow the destination buffer if the attacker provides a string of many ampersands.

Improper Restriction of Operations within the Bounds of a Memory Buffer

CWE-119

The following example asks a user for an offset into an array to select an item.


               
}
printf("You selected %s\n", items[index-1]);

The programmer allows the user to specify which element in the list to select, however an attacker can provide an out-of-bounds offset, resulting in a buffer over-read (CWE-126).

Improper Restriction of Operations within the Bounds of a Memory Buffer

CWE-119

In the following code, the method retrieves a value from an array at a specific array index location that is given as an input parameter to the method


               
}
return value;// check that the array index is less than the maximum// length of the array
value = array[index];// get the value at the specified index of the array
// if array index is invalid then output error message// and return value indicating error
value = -1;

However, this method only verifies that the given array index is less than the maximum length of the array but does not check for the minimum value (CWE-839). This will allow a negative value to be accepted as the input array index, which will result in a out of bounds read (CWE-125) and may allow access to sensitive memory. The input array index should be checked to verify that is within the maximum and minimum range required for the array (CWE-129). In this example the if statement should be modified to include a minimum range check, as shown below.


               
...// check that the array index is within the correct// range of values for the array

Improper Restriction of Operations within the Bounds of a Memory Buffer

CWE-119

Windows provides the _mbs family of functions to perform various operations on multibyte strings. When these functions are passed a malformed multibyte string, such as a string containing a valid leading byte followed by a single null byte, they can read or write past the end of the string buffer causing a buffer overflow. The following functions all pose a risk of buffer overflow: _mbsinc _mbsdec _mbsncat _mbsncpy _mbsnextc _mbsnset _mbsrev _mbsset _mbsstr _mbstok _mbccpy _mbslen

Overview

Type

Linux Kernel

First reported 15 years ago

2009-08-28 15:30:00

Last updated 7 years ago

2017-09-19 01:29:00

Affected Software

Linux Kernel 2.6.0

2.6.0

Linux Kernel 2.6.1

2.6.1

Linux Kernel 2.6.2

2.6.2

Linux Kernel 2.6.3

2.6.3

Linux Kernel 2.6.4

2.6.4

Linux Kernel 2.6.5

2.6.5

Linux Kernel 2.6.6

2.6.6

Linux Kernel 2.6.7

2.6.7

Linux Kernel 2.6.8

2.6.8

Linux Kernel 2.6.8.1

2.6.8.1

Linux Kernel 2.6.9

2.6.9

Linux Kernel 2.6.10

2.6.10

Linux Kernel 2.6.11

2.6.11

Linux Kernel 2.6.11.1

2.6.11.1

Linux Kernel 2.6.11.2

2.6.11.2

Linux Kernel 2.6.11.3

2.6.11.3

Linux Kernel 2.6.11.4

2.6.11.4

Linux Kernel 2.6.11.5

2.6.11.5

Linux Kernel 2.6.11.6

2.6.11.6

Linux Kernel 2.6.11.7

2.6.11.7

Linux Kernel 2.6.11.8

2.6.11.8

Linux Kernel 2.6.11.9

2.6.11.9

Linux Kernel 2.6.11.10

2.6.11.10

Linux Kernel 2.6.11.11

2.6.11.11

Linux Kernel 2.6.11.12

2.6.11.12

Linux Kernel 2.6.12

2.6.12

Linux Kernel 2.6.12.1

2.6.12.1

Linux Kernel 2.6.12.2

2.6.12.2

Linux Kernel 2.6.12.3

2.6.12.3

Linux Kernel 2.6.12.4

2.6.12.4

Linux Kernel 2.6.12.5

2.6.12.5

Linux Kernel 2.6.12.6

2.6.12.6

Linux Kernel 2.6.13

2.6.13

Linux Kernel 2.6.13.1

2.6.13.1

Linux Kernel 2.6.13.2

2.6.13.2

Linux Kernel 2.6.13.3

2.6.13.3

Linux Kernel 2.6.13.4

2.6.13.4

Linux Kernel 2.6.13.5

2.6.13.5

Linux Kernel 2.6.14

2.6.14

Linux Kernel 2.6.14.1

2.6.14.1

Linux Kernel 2.6.14.2

2.6.14.2

Linux Kernel 2.6.14.3

2.6.14.3

Linux Kernel 2.6.14.4

2.6.14.4

Linux Kernel 2.6.14.5

2.6.14.5

Linux Kernel 2.6.14.6

2.6.14.6

Linux Kernel 2.6.14.7

2.6.14.7

Linux Kernel 2.6.15

2.6.15

Linux Kernel 2.6.15.1

2.6.15.1

Linux Kernel 2.6.15.2

2.6.15.2

Linux Kernel 2.6.15.3

2.6.15.3

Linux Kernel 2.6.15.4

2.6.15.4

Linux Kernel 2.6.15.5

2.6.15.5

Linux Kernel 2.6.15.6

2.6.15.6

Linux Kernel 2.6.15.7

2.6.15.7

Linux Kernel 2.6.16

2.6.16

Linux Kernel 2.6.16.1

2.6.16.1

Linux Kernel 2.6.16.2

2.6.16.2

Linux Kernel 2.6.16.3

2.6.16.3

Linux Kernel 2.6.16.4

2.6.16.4

Linux Kernel 2.6.16.5

2.6.16.5

Linux Kernel 2.6.16.6

2.6.16.6

Linux Kernel 2.6.16.7

2.6.16.7

Linux Kernel 2.6.16.8

2.6.16.8

Linux Kernel 2.6.16.9

2.6.16.9

Linux Kernel 2.6.16.10

2.6.16.10

Linux Kernel 2.6.16.11

2.6.16.11

Linux Kernel 2.6.16.12

2.6.16.12

Linux Kernel 2.6.16.13

2.6.16.13

Linux Kernel 2.6.16.14

2.6.16.14

Linux Kernel 2.6.16.15

2.6.16.15

Linux Kernel 2.6.16.16

2.6.16.16

Linux Kernel 2.6.16.17

2.6.16.17

Linux Kernel 2.6.16.18

2.6.16.18

Linux Kernel 2.6.16.19

2.6.16.19

Linux Kernel 2.6.16.20

2.6.16.20

Linux Kernel 2.6.16.21

2.6.16.21

Linux Kernel 2.6.16.22

2.6.16.22

Linux Kernel 2.6.16.23

2.6.16.23

Linux Kernel 2.6.16.24

2.6.16.24

Linux Kernel 2.6.16.25

2.6.16.25

Linux Kernel 2.6.16.26

2.6.16.26

Linux Kernel 2.6.16.27

2.6.16.27

Linux Kernel 2.6.16.28

2.6.16.28

Linux Kernel 2.6.16.29

2.6.16.29

Linux Kernel 2.6.16.30

2.6.16.30

Linux Kernel 2.6.16.31

2.6.16.31

Linux Kernel 2.6.16.32

2.6.16.32

Linux Kernel 2.6.16.33

2.6.16.33

Linux Kernel 2.6.16.34

2.6.16.34

Linux Kernel 2.6.16.35

2.6.16.35

Linux Kernel 2.6.16.36

2.6.16.36

Linux Kernel 2.6.16.37

2.6.16.37

Linux Kernel 2.6.16.38

2.6.16.38

Linux Kernel 2.6.16.39

2.6.16.39

Linux Kernel 2.6.16.40

2.6.16.40

Linux Kernel 2.6.16.41

2.6.16.41

Linux Kernel 2.6.16.42

2.6.16.42

Linux Kernel 2.6.16.43

2.6.16.43

Linux Kernel 2.6.16.44

2.6.16.44

Linux Kernel 2.6.16.45

2.6.16.45

Linux Kernel 2.6.16.46

2.6.16.46

Linux Kernel 2.6.16.47

2.6.16.47

Linux Kernel 2.6.16.48

2.6.16.48

Linux Kernel 2.6.16.49

2.6.16.49

Linux Kernel 2.6.16.50

2.6.16.50

Linux Kernel 2.6.16.51

2.6.16.51

Linux Kernel 2.6.16.52

2.6.16.52

Linux Kernel 2.6.16.53

2.6.16.53

Linux Kernel 2.6.16.54

2.6.16.54

Linux Kernel 2.16.55

2.6.16.55

Linux Kernel 2.6.16.56

2.6.16.56

Linux Kernel 2.6.16.57

2.6.16.57

Linux Kernel 2.6.16.58

2.6.16.58

Linux Kernel 2.6.16.59

2.6.16.59

Linux Kernel 2.6.16.60

2.6.16.60

Linux Kernel 2.6.16.61

2.6.16.61

Linux Kernel 2.6.16.62

2.6.16.62

Linux Kernel 2.6.17

2.6.17

Linux Kernel 2.6.17.1

2.6.17.1

Linux Kernel 2.6.17.2

2.6.17.2

Linux Kernel 2.6.17.3

2.6.17.3

Linux Kernel 2.6.17.4

2.6.17.4

Linux Kernel 2.6.17.5

2.6.17.5

Linux Kernel 2.6.17.6

2.6.17.6

Linux Kernel 2.6.17.7

2.6.17.7

Linux Kernel 2.6.17.8

2.6.17.8

Linux Kernel 2.6.17.9

2.6.17.9

Linux Kernel 2.6.17.10

2.6.17.10

Linux Kernel 2.6.17.11

2.6.17.11

Linux Kernel 2.6.17.12

2.6.17.12

Linux Kernel 2.6.17.13

2.6.17.13

Linux Kernel 2.6.17.14

2.6.17.14

Linux Kernel 2.6.18

2.6.18

Linux Kernel 2.6.18.1

2.6.18.1

Linux Kernel 2.6.18.2

2.6.18.2

Linux Kernel 2.6.18.3

2.6.18.3

Linux Kernel 2.6.18.4

2.6.18.4

Linux Kernel 2.6.18.5

2.6.18.5

Linux Kernel 2.6.18.6

2.6.18.6

Linux Kernel 2.6.18.7

2.6.18.7

Linux Kernel 2.6.18.8

2.6.18.8

Linux Kernel 2.6.19

2.6.19

Linux Kernel 2.6.19.1

2.6.19.1

Linux Kernel 2.6.19.2

2.6.19.2

Linux Kernel 2.6.19.3

2.6.19.3

Linux Kernel 2.6.19.4

2.6.19.4

Linux Kernel 2.6.19.5

2.6.19.5

Linux Kernel 2.6.19.6

2.6.19.6

Linux Kernel 2.6.19.7

2.6.19.7

Linux Kernel 2.6.20

2.6.20

Linux Kernel 2.6.20.1

2.6.20.1

Linux Kernel 2.6.20.2

2.6.20.2

Linux Kernel 2.6.20.3

2.6.20.3

Linux Kernel 2.6.20.4

2.6.20.4

Linux Kernel 2.6.20.5

2.6.20.5

Linux Kernel 2.6.20.6

2.6.20.6

Linux Kernel 2.6.20.7

2.6.20.7

Linux Kernel 2.6.20.8

2.6.20.8

Linux Kernel 2.6.20.9

2.6.20.9

Linux Kernel 2.6.20.10

2.6.20.10

Linux Kernel 2.6.20.11

2.6.20.11

Linux Kernel 2.6.20.12

2.6.20.12

Linux Kernel 2.6.20.13

2.6.20.13

Linux Kernel 2.6.20.14

2.6.20.14

Linux Kernel 2.6.20.15

2.6.20.15

Linux Kernel 2.6.20.16

2.6.20.16

Linux Kernel 2.6.20.17

2.6.20.17

Linux Kernel 2.6.20.18

2.6.20.18

Linux Kernel 2.6.20.19

2.6.20.19

Linux Kernel 2.6.20.20

2.6.20.20

Linux Kernel 2.6.20.21

2.6.20.21

Linux Kernel 2.6.21

2.6.21

Linux Kernel 2.6.21.1

2.6.21.1

Linux Kernel 2.6.21.2

2.6.21.2

Linux Kernel 2.6.21.3

2.6.21.3

Linux Kernel 2.6.21.4

2.6.21.4

Linux Kernel 2.6.21.5

2.6.21.5

Linux Kernel 2.6.21.6

2.6.21.6

Linux Kernel 2.6.21.7

2.6.21.7

Linux Kernel 2.6.22

2.6.22

Linux Kernel 2.6.22.1

2.6.22.1

Linux Kernel 2.6.22.2

2.6.22.2

Linux Kernel 2.6.22.3

2.6.22.3

Linux Kernel 2.6.22.4

2.6.22.4

Linux Kernel 2.6.22.5

2.6.22.5

Linux Kernel 2.6.22.6

2.6.22.6

Linux Kernel 2.6.22.7

2.6.22.7

Linux Kernel 2.6.22.8

2.6.22.8

Linux Kernel 2.6.22.9

2.6.22.9

Linux Kernel 2.6.22.10

2.6.22.10

Linux Kernel 2.6.22.11

2.6.22.11

Linux Kernel 2.6.22.12

2.6.22.12

Linux Kernel 2.6.22.13

2.6.22.13

Linux Kernel 2.6.22.14

2.6.22.14

Linux Kernel 2.6.22.15

2.6.22.15

Linux Kernel 2.6.22.16

2.6.22.16

Linux Kernel 2.6.22.17

2.6.22.17

Linux Kernel 2.6.22.18

2.6.22.18

Linux Kernel 2.6.22.19

2.6.22.19

Linux Kernel 2.6.23

2.6.23

Linux Kernel 2.6.23.1

2.6.23.1

Linux Kernel 2.6.23.2

2.6.23.2

Linux Kernel 2.6.23.3

2.6.23.3

Linux Kernel 2.6.23.4

2.6.23.4

Linux Kernel 2.6.23.5

2.6.23.5

Linux Kernel 2.6.23.6

2.6.23.6

Linux Kernel 2.6.23.7

2.6.23.7

Linux Kernel 2.6.23.8

2.6.23.8

Linux Kernel 2.6.23.9

2.6.23.9

Linux Kernel 2.6.23.10

2.6.23.10

Linux Kernel 2.6.23.11

2.6.23.11

Linux Kernel 2.6.23.12

2.6.23.12

Linux Kernel 2.6.23.13

2.6.23.13

Linux Kernel 2.6.23.14

2.6.23.14

Linux Kernel 2.6.23.16

2.6.23.15

Linux Kernel 2.6.23.16

2.6.23.16

Linux Kernel 2.6.23.17

2.6.23.17

Linux Kernel 2.6.24

2.6.24

Linux Kernel 2.6.24.1

2.6.24.1

Linux Kernel 2.6.24.2

2.6.24.2

Linux Kernel 2.6.24.3

2.6.24.3

Linux Kernel 2.6.24.4

2.6.24.4

Linux Kernel 2.6.24.5

2.6.24.5

Linux Kernel 2.6.24.6

2.6.24.6

Linux Kernel 2.6.24.7

2.6.24.7

Linux Kernel 2.6.25

2.6.25

Linux Kernel 2.6.25.1

2.6.25.1

Linux Kernel 2.6.25.2

2.6.25.2

Linux Kernel 2.6.25.3

2.6.25.3

Linux Kernel 2.6.25.4

2.6.25.4

Linux Kernel 2.6.25.5

2.6.25.5

Linux Kernel 2.6.25.6

2.6.25.6

Linux Kernel 2.6.25.7

2.6.25.7

Linux Kernel 2.6.25.8

2.6.25.8

Linux Kernel 2.6.25.9

2.6.25.9

Linux Kernel 2.6.25.10

2.6.25.10

Linux Kernel 2.6.25.11

2.6.25.11

Linux Kernel 2.6.25.12

2.6.25.12

Linux Kernel 2.6.25.13

2.6.25.13

Linux Kernel 2.6.25.14

2.6.25.14

Linux Kernel 2.6.25.15

2.6.25.15

Linux Kernel 2.6.25.16

2.6.25.16

Linux Kernel 2.6.25.17

2.6.25.17

Linux Kernel 2.6.25.18

2.6.25.18

Linux Kernel 2.6.25.19

2.6.25.19

Linux Kernel 2.6.25.20

2.6.25.20

Linux Kernel 2.6.26

2.6.26

Linux Kernel 2.6.26.1

2.6.26.1

Linux Kernel 2.6.26.2

2.6.26.2

Linux Kernel 2.6.26.3

2.6.26.3

Linux Kernel 2.6.26.4

2.6.26.4

Linux Kernel 2.6.26.5

2.6.26.5

Linux Kernel 2.6.26.6

2.6.26.6

Linux Kernel 2.6.26.7

2.6.26.7

Linux Kernel 2.6.26.8

2.6.26.8

Linux Kernel 2.6.27

2.6.27

Linux Kernel 2.6.27.1

2.6.27.1

Linux Kernel 2.6.27.2

2.6.27.2

Linux Kernel 2.6.27.3

2.6.27.3

Linux Kernel 2.6.27.4

2.6.27.4

Linux Kernel 2.6.27.5

2.6.27.5

Linux Kernel 2.6.27.6

2.6.27.6

Linux Kernel 2.6.27.7

2.6.27.7

Linux Kernel 2.6.27.8

2.6.27.8

Linux Kernel 2.6.27.9

2.6.27.9

Linux Kernel 2.6.27.10

2.6.27.10

Linux Kernel 2.6.27.11

2.6.27.11

Linux Kernel 2.6.27.12

2.6.27.12

Linux Kernel 2.6.27.13

2.6.27.13

Linux Kernel 2.6.27.14

2.6.27.14

Linux Kernel 2.6.27.15

2.6.27.15

Linux Kernel 2.6.27.16

2.6.27.16

Linux Kernel 2.6.27.17

2.6.27.17

Linux Kernel 2.6.27.18

2.6.27.18

Linux Kernel 2.6.27.19

2.6.27.19

Linux Kernel 2.6.27.20

2.6.27.20

Linux Kernel 2.6.27.21

2.6.27.21

Linux Kernel 2.6.27.22

2.6.27.22

Linux Kernel 2.6.27.23

2.6.27.23

Linux Kernel 2.6.27.24

2.6.27.24

Linux Kernel 2.6.27.25

2.6.27.25

Linux Kernel 2.6.27.26

2.6.27.26

Linux Kernel 2.6.27.27

2.6.27.27

Linux Kernel 2.6.27.28

2.6.27.28

Linux Kernel 2.6.27.29

2.6.27.29

Linux Kernel 2.6.27.30

2.6.27.30

Linux Kernel 2.6.27.31

2.6.27.31

Linux Kernel 2.6.28

2.6.28

Linux Kernel 2.6.28.1

2.6.28.1

Linux Kernel 2.6.28.2

2.6.28.2

Linux Kernel 2.6.28.3

2.6.28.3

Linux Kernel 2.6.28.4

2.6.28.4

Linux Kernel 2.6.28.5

2.6.28.5

Linux Kernel 2.6.28.6

2.6.28.6

Linux Kernel 2.6.28.7

2.6.28.7

Linux Kernel 2.6.28.8

2.6.28.8

Linux Kernel 2.6.28.9

2.6.28.9

Linux Kernel 2.6.28.10

2.6.28.10

Linux Kernel 2.6.29

2.6.29

Linux Kernel 2.6.29.1

2.6.29.1

Linux Kernel 2.6.29.2

2.6.29.2

Linux Kernel 2.6.29.3

2.6.29.3

Linux Kernel 2.6.29.4

2.6.29.4

Linux Kernel 2.6.29.5

2.6.29.5

Linux Kernel 2.6.29.6

2.6.29.6

Linux Kernel 2.6.30

2.6.30

Linux Kernel 2.6.30.1

2.6.30.1

Linux Kernel 2.6.30.2

2.6.30.2

Linux Kernel 2.6.30.3

2.6.30.3

Linux Kernel 2.6.30.4

2.6.30.4

Linux Kernel 2.6.30.5

2.6.30.5

Linux Kernel 2.6.31 Release Candidate 1

2.6.31

Linux Kernel 2.6.31 Release Candidate 2

2.6.31

Linux Kernel 2.6.31 Release Candidate 3

2.6.31

References

http://danwalsh.livejournal.com/30084.html

Exploit

http://eparis.livejournal.com/606.html

http://git.kernel.org/?p=linux/kernel/git/jmorris/security-testing-2.6.git;a=commit;h=47d439e9fb8a81a90022cfa785bf1c36c4e2aff6

http://git.kernel.org/?p=linux/kernel/git/jmorris/security-testing-2.6.git;a=commit;h=7c73875e7dda627040b12c19b01db634fa7f0fd1

http://git.kernel.org/?p=linux/kernel/git/jmorris/security-testing-2.6.git;a=commit;h=84336d1a77ccd2c06a730ddd38e695c2324a7386

http://git.kernel.org/?p=linux/kernel/git/jmorris/security-testing-2.6.git;a=commit;h=a2551df7ec568d87793d2eea4ca744e86318f205

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1d9959734a1949ea4f2427bd2d8b21ede6b2441c

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=788084aba2ab7348257597496befcbccabdc98a3

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8cf948e744e0218af604c32edecde10006dc8e9e

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9c0d90103c7e0eb6e638e5b649e9f6d8d9c1b4b3

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ab5a91a8364c3d6fc617abc47cc81d162c01d90a

http://kbase.redhat.com/faq/docs/DOC-18042

[security-announce] 20100303 VMSA-2010-0004 ESX Service Console and vMA third party updates

http://patchwork.kernel.org/patch/36539/

http://patchwork.kernel.org/patch/36540/

http://patchwork.kernel.org/patch/36649/

Patch

http://patchwork.kernel.org/patch/36650/

36501

Vendor Advisory

37105

38794

38834

http://thread.gmane.org/gmane.linux.kernel.lsm/9075

http://twitter.com/spendergrsec/statuses/3303390960

DSA-2005

http://www.kernel.org/pub/linux/kernel/v2.6/testing/ChangeLog-2.6.31-rc7

[oss-security] 20090817 SELinux and mmap_min_addr behaviour (CVE-2009-2695)

RHSA-2009:1672

36051

Patch

USN-852-1

ADV-2010-0528

https://bugzilla.redhat.com/show_bug.cgi?id=511143

https://bugzilla.redhat.com/show_bug.cgi?id=517830

oval:org.mitre.oval:def:7144

oval:org.mitre.oval:def:9882

RHSA-2009:1540

RHSA-2009:1548

FEDORA-2009-9044

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.