Description
One or more system settings or configuration elements can be externally controlled by a user.
Allowing external control of system settings can disrupt service or cause an application to behave in unexpected, and potentially malicious ways.
Potential Impact
Other
Varies by Context
Demonstrative Examples
...sethostid(argv[1]);......conn.setCatalog(request.getParameter("catalog"));...Mitigations & Prevention
Compartmentalize the system to have "safe" areas where trust boundaries can be unambiguously drawn. Do not allow sensitive data to go outside of the trust boundary and always be careful when interfacing with a compartment outside of the safe area. Ensure that appropriate compartmentalization is built into the system design, and the compartmentalization allows for and reinforces privilege separation functionality. Architects and designers should rely on the principle of least
Because setting manipulation covers a diverse set of functions, any attempt at illustrating it will inevitably be incomplete. Rather than searching for a tight-knit relationship between the functions addressed in the setting manipulation category, take a step back and consider the sorts of system values that an attacker should not be allowed to control.
In general, do not allow user-provided or otherwise untrusted data to control sensitive values. The leverage that an attacker gains by controlling these values is not always immediately obvious, but do not underestimate the creativity of the attacker.
Detection Methods
- Automated Static Analysis High — 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 sea
Related Weaknesses
Taxonomy Mappings
- 7 Pernicious Kingdoms: — Setting Manipulation
- Software Fault Patterns: SFP25 — Tainted input to variable
Frequently Asked Questions
What is CWE-15?
CWE-15 (External Control of System or Configuration Setting) is a software weakness identified by MITRE's Common Weakness Enumeration. It is classified as a Base-level weakness. One or more system settings or configuration elements can be externally controlled by a user.
How can CWE-15 be exploited?
Attackers can exploit CWE-15 (External Control of System or Configuration Setting) to varies by context. This weakness is typically introduced during the Implementation, Implementation phase of software development.
How do I prevent CWE-15?
Key mitigations include: Compartmentalize the system to have "safe" areas where trust boundaries can be unambiguously drawn. Do not allow sensitive data to go outside of the trust boundary and always be careful when interfaci
What is the severity of CWE-15?
CWE-15 is classified as a Base-level weakness (Medium abstraction). Its actual severity depends on the specific context and how the weakness manifests in your application.