CAPEC Definitions

    CAPEC Definitions / CAPEC-10

    CAPEC-10: Buffer Overflow via Environment Variables

    This attack pattern involves causing a buffer overflow through manipulation of environment variables. Once the adversary finds that they can modify an environment variable, they may try to overflow associated buffers. This attack leverages implicit trust often placed in environment variables.

    Severity:High
    Possibility:High

    Extended Description

    Although the focus of this attack is putting excessive content into an environment variable that is loaded into a buffer, environment variables can be used to assist a classic buffer overflow attack as well. In the case where the buffer used in a traditional buffer overflow attack is not large enough to store the adversary's shell code, they will store the shell code in an environment variable and attempt to return to its address, rather than back into the data they wrote to the buffer.

    Mitigations

    Do not expose environment variable to the user.

    Do not use untrusted data in your environment variables.

    Use a language or compiler that performs automatic bounds checking

    There are tools such as Sharefuzz [REF-2] which is an environment variable fuzzer for Unix that support loading a shared library. You can use Sharefuzz to determine if you are exposing an environment variable vulnerable to buffer overflow.

    Relationships with other CAPECs

    CAPEC-100: Overflow Buffers

    Prerequisites

    The application uses environment variables.

    An environment variable exposed to the user is vulnerable to a buffer overflow.

    The vulnerable environment variable uses untrusted data.

    Tainted data used in the environment variables is not properly validated. For instance boundary checking is not done before copying the input data to a buffer.

    Related Weaknesses

    CWE-120: Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')

    CWE-302: Authentication Bypass by Assumed-Immutable Data

    CWE-118: Incorrect Access of Indexable Resource ('Range Error')

    CWE-119: Improper Restriction of Operations within the Bounds of a Memory Buffer

    CWE-74: Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection')

    CWE-99: Improper Control of Resource Identifiers ('Resource Injection')

    CWE-20: Improper Input Validation

    CWE-680: Integer Overflow to Buffer Overflow

    CWE-733: Compiler Optimization Removal or Modification of Security-critical Code

    CWE-697: Incorrect Comparison