CWE-913: Improper Control of Dynamically-Managed Code Resources
Abstraction | Structure | Status |
---|---|---|
None | Simple | Incomplete |
Description
The product does not properly restrict reading from or writing to dynamically-managed code resources such as variables, objects, classes, attributes, functions, or executable instructions or statements.
Extended Description
Many languages offer powerful features that allow the programmer to dynamically create or modify existing code, or resources used by code such as variables and objects. While these features can offer significant flexibility and reduce development time, they can be extremely dangerous if attackers can directly influence these code resources in unexpected ways.
Related Weaknesses
Nature | ID | View ID | Name |
---|---|---|---|
ChildOf | CWE-664 | 1000 | Improper Control of a Resource Through its Lifetime |
Modes of Introduction
Phase | Note |
---|---|
Architecture and Design | - |
Implementation | - |
Common Consequences
Scope | Impact | Note |
---|---|---|
Integrity | Execute Unauthorized Code or Commands | |
Other, Integrity | Varies by Context, Alter Execution Logic |
Detection Methods
Fuzzing
Fuzz testing (fuzzing) is a powerful technique for generating large numbers of diverse inputs - either randomly or algorithmically - and dynamically invoking the code with those inputs. Even with random inputs, it is often capable of generating unexpected results such as crashes, memory corruption, or resource consumption. Fuzzing effectively produces repeatable test cases that clearly indicate bugs, which helps developers to diagnose the issues.
Effectiveness: High
Potential Mitigations
Implementation
Strategy: Input Validation
For any externally-influenced input, check the input against an allowlist of acceptable values.
Implementation
Strategy: Refactoring
Refactor the code so that it does not need to be dynamically managed.