CVE-2007-0009 - Improper Restriction of Operations within the Bounds of a Memory Buffer

Severity

68%

Complexity

86%

Confidentiality

106%

Stack-based buffer overflow in the SSLv2 support in Mozilla Network Security Services (NSS) before 3.11.5, as used by Firefox before 1.5.0.10 and 2.x before 2.0.0.2, Thunderbird before 1.5.0.10, SeaMonkey before 1.0.8, and certain Sun Java System server products before 20070611, allows remote attackers to execute arbitrary code via invalid "Client Master Key" length values.

Stack-based buffer overflow in the SSLv2 support in Mozilla Network Security Services (NSS) before 3.11.5, as used by Firefox before 1.5.0.10 and 2.x before 2.0.0.2, Thunderbird before 1.5.0.10, SeaMonkey before 1.0.8, and certain Sun Java System server products before 20070611, allows remote attackers to execute arbitrary code via invalid "Client Master Key" length values.

CVSS 2.0 Base Score 6.8. CVSS Attack Vector: network. CVSS Attack Complexity: medium. CVSS Vector: (AV:N/AC:M/Au:N/C:P/I:P/A:P).

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

First reported 17 years ago

2007-02-26 20:28:00

Last updated 5 years ago

2019-10-09 22:51:00

Affected Software

Mozilla Firefox

Mozilla Network Security Services

Mozilla SeaMonkey

Mozilla Thunderbird

Debian Debian Linux 3.1

3.1

Debian GNU/Linux 4.0

4.0

Canonical Ubuntu Linux 5.10

5.10

Canonical Ubuntu Linux 6.06 LTS (Long-Term Support)

6.06

Canonical Ubuntu Linux 6.10

6.10

References

20070202-01-P

Broken Link

20070301-01-P

Broken Link

FEDORA-2007-278

Broken Link

FEDORA-2007-279

Broken Link

FEDORA-2007-308

Broken Link

FEDORA-2007-309

Broken Link

HPSBUX02153

Broken Link

20070223 Mozilla Network Security Services SSLv2 Server Stack Overflow Vulnerability

Broken Link

SUSE-SA:2007:019

Broken Link

RHSA-2007:0077

Third Party Advisory

24253

Third Party Advisory

24277

Third Party Advisory

24287

Third Party Advisory

24290

Third Party Advisory

24293

Third Party Advisory

24333

Third Party Advisory

24342

Third Party Advisory

24343

Third Party Advisory

24384

Third Party Advisory

24389

Third Party Advisory

24395

Third Party Advisory

24406

Third Party Advisory

24410

Third Party Advisory

24455

Third Party Advisory

24456

Third Party Advisory

24457

Third Party Advisory

24522

Third Party Advisory

24562

Third Party Advisory

24650

Third Party Advisory

24703

Third Party Advisory

25588

Third Party Advisory

25597

Third Party Advisory

GLSA-200703-18

Third Party Advisory

SSA:2007-066-05

Mailing List, Third Party Advisory

SSA:2007-066-04

Mailing List, Third Party Advisory

SSA:2007-066-03

Mailing List, Third Party Advisory

102856

Broken Link

102945

Broken Link

DSA-1336

Third Party Advisory

GLSA-200703-22

Third Party Advisory

VU#592796

Third Party Advisory, US Government Resource

MDKSA-2007:050

Third Party Advisory

MDKSA-2007:052

Third Party Advisory

http://www.mozilla.org/security/announce/2007/mfsa2007-06.html

Vendor Advisory

SUSE-SA:2007:022

Broken Link

http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html

Third Party Advisory

32106

Broken Link

RHSA-2007:0078

Third Party Advisory

RHSA-2007:0079

Third Party Advisory

RHSA-2007:0097

Third Party Advisory

RHSA-2007:0108

Third Party Advisory

20070226 rPSA-2007-0040-1 firefox

Third Party Advisory, VDB Entry

20070303 rPSA-2007-0040-3 firefox thunderbird

Third Party Advisory, VDB Entry

64758

Third Party Advisory, VDB Entry

1017696

Third Party Advisory, VDB Entry

USN-428-1

Third Party Advisory

USN-431-1

Third Party Advisory

ADV-2007-0718

Third Party Advisory

ADV-2007-0719

Third Party Advisory

ADV-2007-1165

Third Party Advisory

ADV-2007-2141

Third Party Advisory

https://bugzilla.mozilla.org/show_bug.cgi?id=364323

Issue Tracking, Vendor Advisory

nss-clientmasterkey-bo(32663)

Third Party Advisory, VDB Entry

https://issues.rpath.com/browse/RPL-1081

Broken Link

https://issues.rpath.com/browse/RPL-1103

Broken Link

oval:org.mitre.oval:def:10174

Third Party Advisory

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.