CVE-2010-3765 - Improper Restriction of Operations within the Bounds of a Memory Buffer

Severity

93%

Complexity

86%

Confidentiality

165%

Mozilla Firefox 3.5.x through 3.5.14 and 3.6.x through 3.6.11, Thunderbird 3.1.6 before 3.1.6 and 3.0.x before 3.0.10, and SeaMonkey 2.x before 2.0.10, when JavaScript is enabled, allows remote attackers to execute arbitrary code via vectors related to nsCSSFrameConstructor::ContentAppended, the appendChild method, incorrect index tracking, and the creation of multiple frames, which triggers memory corruption, as exploited in the wild in October 2010 by the Belmoo malware.

Mozilla Firefox 3.5.x through 3.5.14 and 3.6.x through 3.6.11, Thunderbird 3.1.6 before 3.1.6 and 3.0.x before 3.0.10, and SeaMonkey 2.x before 2.0.10, when JavaScript is enabled, allows remote attackers to execute arbitrary code via vectors related to nsCSSFrameConstructor::ContentAppended, the appendChild method, incorrect index tracking, and the creation of multiple frames, which triggers memory corruption, as exploited in the wild in October 2010 by the Belmoo malware.

CVSS 2.0 Base Score 9.3. CVSS Attack Vector: network. CVSS Attack Complexity: medium. CVSS Vector: (AV:N/AC:M/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

Mozilla

First reported 14 years ago

2010-10-28 00:00:00

Last updated 7 years ago

2017-09-19 01:31:00

Affected Software

Mozilla Firefox 3.5

3.5

Mozilla Firefox 3.5.1

3.5.1

Mozilla Firefox 3.5.2

3.5.2

Mozilla Firefox 3.5.3

3.5.3

Mozilla Firefox 3.5.4

3.5.4

Mozilla Firefox 3.5.5

3.5.5

Mozilla Firefox 3.5.6

3.5.6

Mozilla Firefox 3.5.7

3.5.7

Mozilla Firefox 3.5.8

3.5.8

Mozilla Firefox 3.5.9

3.5.9

Mozilla Firefox 3.5.10

3.5.10

Mozilla Firefox 3.5.11

3.5.11

Mozilla Firefox 3.5.12

3.5.12

Mozilla Firefox 3.5.13

3.5.13

Mozilla Firefox 3.5.14

3.5.14

Mozilla Firefox 3.6

3.6

Mozilla Firefox 3.6.2

3.6.2

Mozilla Firefox 3.6.3

3.6.3

Mozilla Firefox 3.6.4

3.6.4

Mozilla Firefox 3.6.6

3.6.6

Mozilla Firefox 3.6.7

3.6.7

Mozilla Firefox 3.6.8

3.6.8

Mozilla Firefox 3.6.9

3.6.9

Mozilla Firefox 3.6.10

3.6.10

Mozilla Firefox 3.6.11

3.6.11

Mozilla Thunderbird 3.0.1

3.0.1

Mozilla Thunderbird 3.0.2

3.0.2

Mozilla Thunderbird 3.0.3

3.0.3

Mozilla Thunderbird 3.0.4

3.0.4

Mozilla Thunderbird 3.0.5

3.0.5

Mozilla Thunderbird 3.0.6

3.0.6

Mozilla Thunderbird 3.0.7

3.0.7

Mozilla Thunderbird 3.0.8

3.0.8

Mozilla Thunderbird 3.0.9

3.0.9

Mozilla Thunderbird 3.1.1

3.1.1

Mozilla Thunderbird 3.1.2

3.1.2

Mozilla Thunderbird 3.1.3

3.1.3

Mozilla Thunderbird 3.1.4

3.1.4

Mozilla Thunderbird 3.1.5

3.1.5

Mozilla SeaMonkey 2.0

2.0

Mozilla SeaMonkey 2.0 Alpha 1

2.0

Mozilla SeaMonkey 2.0 Alpha 2

2.0

Mozilla SeaMonkey 2.0 Alpha 3

2.0

Mozilla SeaMonkey 2.0 Beta 1

2.0

Mozilla SeaMonkey 2.0 Beta 2

2.0

Mozilla SeaMonkey 2.0 RC1

2.0

Mozilla SeaMonkey 2.0 RC2

2.0

Mozilla SeaMonkey 2.0.1

2.0.1

Mozilla SeaMonkey 2.0.2

2.0.2

Mozilla SeaMonkey 2.0.3

2.0.3

Mozilla SeaMonkey 2.0.4

2.0.4

Mozilla SeaMonkey 2.0.5

2.0.5

Mozilla SeaMonkey 2.0.6

2.0.6

Mozilla SeaMonkey 2.0.7

2.0.7

Mozilla SeaMonkey 2.0.8

2.0.8

Mozilla SeaMonkey 2.0.9

2.0.9

References

http://blog.mozilla.com/security/2010/10/26/critical-vulnerability-in-firefox-3-5-and-firefox-3-6/

Vendor Advisory

http://blogs.sun.com/security/entry/multiple_vulnerabilities_in_mozilla_firefox

http://isc.sans.edu/diary.html?storyid=9817

FEDORA-2010-17105

FEDORA-2010-16883

FEDORA-2010-16897

FEDORA-2010-16885

http://norman.com/about_norman/press_center/news_archive/2010/129223/en?utm_source=twitterfeed&utm_medium=twitter

41761

Vendor Advisory

41965

Vendor Advisory

41966

Vendor Advisory

41969

Vendor Advisory

41975

Vendor Advisory

42003

Vendor Advisory

42008

Vendor Advisory

42043

Vendor Advisory

42867

Vendor Advisory

SSA:2010-305-01

http://support.avaya.com/css/P8/documents/100114329

http://support.avaya.com/css/P8/documents/100114335

DSA-2124

15341

Exploit

15342

Exploit

15352

Exploit

MDVSA-2010:213

MDVSA-2010:219

http://www.mozilla.org/security/announce/2010/mfsa2010-73.html

http://www.norman.com/about_norman/press_center/news_archive/2010/129223/

http://www.norman.com/security_center/virus_description_archive/129146/

RHSA-2010:0808

RHSA-2010:0809

RHSA-2010:0810

RHSA-2010:0861

RHSA-2010:0896

44425

1024645

1024650

1024651

USN-1011-1

USN-1011-2

USN-1011-3

ADV-2010-2837

Vendor Advisory

ADV-2010-2857

Vendor Advisory

ADV-2010-2864

Vendor Advisory

ADV-2010-2871

Vendor Advisory

ADV-2011-0061

Vendor Advisory

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

https://bugzilla.mozilla.org/show_bug.cgi?id=607222#c53

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

oval:org.mitre.oval:def:12108

RHSA-2010:0812

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.