CWE-123: Write-what-where Condition
Official CWE-123 CWE context with Glexia analysis, remediation guidance, related CVEs, and ATT&CK context.
Glexia's Take
CWE-123: Write-what-where Condition
Write-what-where Condition represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.
Executive Impact
- Integrity,Confidentiality,Availability,Access Control: Modify Memory,Execute Unauthorized Code or Commands,Gain Privileges or Assume Identity,DoS: Crash, Exit, or Restart,Bypass Protection Mechanism: Clearly, write-what-where conditions can be used to write data to areas of memory outside the scope of a policy. Also, they almost invariably can be used to execute arbitrary code, which is usually outside the scope of a program's implicit security policy. If the attacker can overwrite a pointer's worth of memory (usually 32 or 64 bits), they can redirect a function pointer to their own malicious code. Even when the attacker can only modify a single byte arbitrary code execution can be possible. Sometimes this is because the same problem can be exploited repeatedly to the same effect. Other times it is because the attacker can overwrite security-critical application-specific data -- such as a flag indicating whether the user is an administrator.
- Integrity,Availability: DoS: Crash, Exit, or Restart,Modify Memory: Many memory accesses can lead to program termination, such as when writing to addresses that are invalid for the current process.
- Access Control,Other: Bypass Protection Mechanism,Other: When the consequence is arbitrary code execution, this can often be used to subvert any other security service.
Developer Pattern
CWE-123 is the kind of defect developers can usually prevent with explicit validation, safer framework defaults, and tests that exercise hostile input or unsafe state transitions.
Confidence
high confidence from CWE-123, 4.20.
Official CWE Definition
CWE-123: Write-what-where Condition
Any condition where the attacker has the ability to write an arbitrary value to an arbitrary location, often as the result of a buffer overflow.
Developer And Remediation Guidance
How teams prevent and detect this weakness
Causes
- The classic example of a write-what-where condition occurs when the accounting information for memory allocations is overwritten in a particular fashion. Here is an example of potentially vulnerable code: Vulnerability in this case is dependent on memory layout. The call to strcpy() can be used to write past the end of buf1, and, with a typical layout, can overwrite the accounting information that the system keeps for buf2 when it is allocated. Note that if the allocation header for buf2 can be overwritten, buf2 itself can be overwritten as well.,The allocation header will generally keep a linked list of memory "chunks". Particularly, there may be a "previous" chunk and a "next" chunk. Here, the previous chunk for buf2 will probably be buf1, and the next chunk may be null. When the free() occurs, most memory allocators will rewrite the linked list using data from buf2. Particularly, the "next" chunk for buf1 will be updated and the "previous" chunk for any subsequent chunk will be updated. The attacker can insert a memory address for the "next" chunk and a value to write into that memory address for the "previous" chunk.,This could be used to overwrite a function pointer that gets dereferenced later, replacing it with a memory address that the attacker has legitimate access to, where they have placed malicious code, resulting in arbitrary code execution.
Remediation
- Architecture and Design: Use a language that provides appropriate memory abstractions.
- Operation: Use OS-level preventative functionality integrated after the fact. Not a complete solution.
Detection
- Automated Static Analysis: Automated static analysis, commonly referred to as Static Application Security Testing (SAST), can find some instances of this weakness by analyzing source code (or binary/compiled code) without having to execute it. Typically, this is done by building a model of data flow and control flow, then searching for potentially-vulnerable patterns that connect "sources" (origins of input) with "sinks" (destinations where the data interacts with external components, a lower layer such as the OS, etc.)
- Automated Dynamic Analysis: Use tools that are integrated during compilation to insert runtime error-checking mechanisms related to memory safety errors, such as AddressSanitizer (ASan) for C/C++ [REF-1518].
Mappings
Related CVEs, CWEs, and ATT&CK context
Related CWEs
- CWE-120: Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')
- CWE-119: Improper Restriction of Operations within the Bounds of a Memory Buffer
- CWE-787: Out-of-bounds Write
- CWE-787: Out-of-bounds Write
- CWE-134: Use of Externally-Controlled Format String
- CWE-364: Signal Handler Race Condition
- CWE-415: Double Free
- CWE-416: Use After Free
- CWE-479: Signal Handler Use of a Non-reentrant Function
- CWE-590: Free of Memory not on the Heap
ATT&CK Relevance
ATT&CK relevance is shown only when reviewed or responsibly inferred.