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

Severity

43%

Complexity

86%

Confidentiality

48%

The apr_strmatch_precompile function in strmatch/apr_strmatch.c in Apache APR-util before 1.3.5 allows remote attackers to cause a denial of service (daemon crash) via crafted input involving (1) a .htaccess file used with the Apache HTTP Server, (2) the SVNMasterURI directive in the mod_dav_svn module in the Apache HTTP Server, (3) the mod_apreq2 module for the Apache HTTP Server, or (4) an application that uses the libapreq2 library, which triggers a heap-based buffer underflow.

The apr_strmatch_precompile function in strmatch/apr_strmatch.c in Apache APR-util before 1.3.5 allows remote attackers to cause a denial of service (daemon crash) via crafted input involving (1) a .htaccess file used with the Apache HTTP Server, (2) the SVNMasterURI directive in the mod_dav_svn module in the Apache HTTP Server, (3) the mod_apreq2 module for the Apache HTTP Server, or (4) an application that uses the libapreq2 library, which triggers a heap-based buffer underflow.

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

Type

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util)

First reported 15 years ago

2009-06-08 01:00:00

Last updated 6 years ago

2018-10-11 20:58:00

Affected Software

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 0.9.1

0.9.1

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 0.9.2

0.9.2

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 0.9.3

0.9.3

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 0.9.4

0.9.4

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 0.9.5

0.9.5

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.0

1.0

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.0.1

1.0.1

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.0.2

1.0.2

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.1.0

1.1.0

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.1.1

1.1.1

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.1.2

1.1.2

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.2.1

1.2.1

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.2.2

1.2.2

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.2.6

1.2.6

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.2.7

1.2.7

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.2.8

1.2.8

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.3.0

1.3.0

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.3.1

1.3.1

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.3.2

1.3.2

Apache Software Foundation Apache Portable Runtime Utility library (aka APR-util) 1.3.3

1.3.3

References

APPLE-SA-2009-11-09-1

HPSBUX02612

34724

35284

Vendor Advisory

35360

Vendor Advisory

35395

35444

35487

35565

35710

35797

35843

37221

GLSA-200907-03

SSA:2009-167-02

http://support.apple.com/kb/HT3937

http://svn.apache.org/viewvc?view=rev&revision=779880

http://wiki.rpath.com/Advisories:rPSA-2009-0144

http://www.apache.org/dist/apr/CHANGES-APR-UTIL-1.3

DSA-1812

Patch

MDVSA-2009:131

MDVSA-2013:150

http://www.oracle.com/technetwork/topics/security/cpuapr2013-1899555.html

RHSA-2009:1107

RHSA-2009:1108

20091112 rPSA-2009-0144-1 apr-util

35221

USN-786-1

USN-787-1

ADV-2009-1907

ADV-2009-3184

PK88341

PK91241

PK99478

http://www-01.ibm.com/support/docview.wss?uid=swg27014463

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

Patch

apache-aprstrmatchprecompile-dos(50964)

[httpd-cvs] 20190815 svn commit: r1048743 [3/4] - in /websites/staging/httpd/trunk/content: ./ security/vulnerabilities-httpd.xml security/vulnerabilities_13.html security/vulnerabilities_20.html security/vulnerabilities_22.html security/vulnerabilities_24.html

[httpd-cvs] 20190815 svn commit: r1048742 [3/4] - in /websites/staging/httpd/trunk/content: ./ security/vulnerabilities-httpd.xml security/vulnerabilities_13.html security/vulnerabilities_20.html security/vulnerabilities_22.html security/vulnerabilities_24.html

oval:org.mitre.oval:def:10968

oval:org.mitre.oval:def:12321

FEDORA-2009-6014

FEDORA-2009-6261

FEDORA-2009-5969

[httpd-cvs] 20200401 svn commit: r1058586 [3/4] - in /websites/staging/httpd/trunk/content: ./ security/vulnerabilities-httpd.xml security/vulnerabilities_13.html security/vulnerabilities_20.html security/vulnerabilities_22.html security/vulnerabilities_24.html

[httpd-cvs] 20200401 svn commit: r1058587 [3/4] - in /websites/staging/httpd/trunk/content: ./ security/vulnerabilities-httpd.xml security/vulnerabilities_13.html security/vulnerabilities_20.html security/vulnerabilities_22.html security/vulnerabilities_24.html

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.