CWE-829: Inclusion of Functionality from Untrusted Control Sphere
The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere.
Last updated
Overview
CWE-829 (Inclusion of Functionality from Untrusted Control Sphere) is a base-level software weakness catalogued by MITRE in the Common Weakness Enumeration (CWE). It describes a recurring type of mistake that can lead to exploitable security vulnerabilities.
Real-world CVEs
154 recorded CVEs are caused by CWE-829 (Inclusion of Functionality from Untrusted Control Sphere), including 1 in CISA's KEV (Known Exploited Vulnerabilities) catalog. KEVs are shown first. 73 new CWE-829 CVEs have been recorded so far in 2026 (34 in 2025).
- CVE-2025-32463CISA KEVCritical · CVSS 9.3 · EPSS 99th2025-06-30
- CVE-2026-27941
OpenLIT Vulnerable to Remote Code Execution and Secret Exposure via Misuse of `pull_request_target` in GitHub Actions Workflows
Critical · CVSS 10.0 · EPSS 32th2026-02-26 - CVE-2026-1699Critical · CVSS 10.0 · EPSS 40th2026-01-30
- CVE-2025-70974Critical · CVSS 10.0 · EPSS 49th2026-01-09
- CVE-2021-41037Critical · CVSS 10.0 · EPSS 55th2022-07-08
- CVE-2022-1161Critical · CVSS 10.0 · EPSS 91th2022-04-11
- CVE-2025-70046Critical · CVSS 9.8 · EPSS 28th2026-03-09
- CVE-2026-0770
Langflow exec_globals Inclusion of Functionality from Untrusted Control Sphere Remote Code Execution Vulnerability
Critical · CVSS 9.8 · EPSS 95th2026-01-23 - CVE-2025-66022
FACTION Unauthenticated Custom Extension Upload leads to RCE
Critical · CVSS 9.8 · EPSS 45th2025-11-26 - CVE-2025-11023
Local File Inclusion in ArkSigner's AcBakImzala
Critical · CVSS 9.8 · EPSS 41th2025-10-23 - CVE-2025-27668Critical · CVSS 9.8 · EPSS 46th2025-03-05
- CVE-2024-38537Critical · CVSS 9.8 · EPSS 70th2024-07-02
Showing 12 of 154 recorded CWE-829 CVEs. Track new ones as they are published and get AI-written analysis and fixes.
Monitor CWE-829 vulnerabilitiesCommon consequences
What can happen when CWE-829 is exploited.
Execute Unauthorized Code or Commands
Affects: Confidentiality, Integrity, Availability
An attacker could insert malicious functionality into the program by causing the program to download code that the attacker has placed into the untrusted control sphere, such as a malicious web site. This could enable the injection of malware, information exposure by granting excessive privileges or permissions to the untrusted functionality, DOM-based XSS vulnerabilities, stealing user's cookies, open redirect to malware (CWE-601), etc.
How it happens
When it is introduced
Typically introduced during these phases of the software lifecycle.
How to prevent it
Practical mitigations for CWE-829, grouped by where in the lifecycle they apply.
Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482].
When the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs.
For example, ID 1 could map to "inbox.txt" and ID 2 could map to "profile.txt". Features such as the ESAPI AccessReferenceMap [REF-45] provide this capability.
For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
Run the code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by the software.
OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows the software to specify restrictions on file operations.
This may not be a feasible solution, and it only limits the impact to the operating system; the rest of the application may still be subject to compromise.
Be careful to avoid CWE-243 and other weaknesses related to jails.
Effectiveness: Limited — The effectiveness of this mitigation depends on the prevention capabilities of the specific sandbox or jail being used and might only help to reduce the scope of an attack, such as restricting the attacker to certain system calls or limiting the portion of the file system that can be accessed.
Run your code using the lowest privileges that are required to accomplish the necessary tasks [REF-76]. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database administrator, especially in day-to-day operations.
Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does.
When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if the input is only expected to contain colors such as "red" or "blue."
Do not rely exclusively on looking for malicious or malformed inputs. This is likely to miss at least one undesirable input, especially if the code's environment changes. This can give attackers enough room to bypass the intended validation. However, denylists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.
When validating filenames, use stringent allowlists that limit the character set to be used. If feasible, only allow a single "." character in the filename to avoid weaknesses such as CWE-23, and exclude directory separators such as "/" to avoid CWE-36. Use a list of allowable file extensions, which will help to avoid CWE-434.
Do not rely exclusively on a filtering mechanism that removes potentially dangerous characters. This is equivalent to a denylist, which may be incomplete (CWE-184). For example, filtering "/" is insufficient protection if the filesystem also supports the use of "\" as a directory separator. Another possible error could occur when the filtering is applied in a way that still produces dangerous data (CWE-182). For example, if "../" sequences are removed from the ".../...//" string in a sequential fashion, two instances of "../" would be removed from the original string, but the remaining characters would still form the "../" string.
Effectiveness: High
Store library, include, and utility files outside of the web document root, if possible. Otherwise, store them in a separate directory and use the web server's access control capabilities to prevent attackers from directly requesting them. One common practice is to define a fixed constant in each calling program, then check for the existence of the constant in the library/include file; if the constant does not exist, then the file was directly requested, and it can exit immediately.
This significantly reduces the chance of an attacker being able to bypass any protection mechanisms that are in the base program but not in the include files. It will also reduce the attack surface.
Understand all the potential areas where untrusted inputs can enter your software: parameters or arguments, cookies, anything read from the network, environment variables, reverse DNS lookups, query results, request headers, URL components, e-mail, files, filenames, databases, and any external systems that provide data to the application. Remember that such inputs may be obtained indirectly through API calls.
Many file inclusion problems occur because the programmer assumed that certain inputs could not be modified, especially for cookies and URL components.
Use an application firewall that can detect attacks against this weakness. It can be beneficial in cases in which the code cannot be fixed (because it is controlled by a third party), as an emergency prevention measure while more comprehensive software assurance measures are applied, or to provide defense in depth [REF-1481].
Effectiveness: Moderate — An application firewall might not cover all possible input vectors. In addition, attack techniques might be available to bypass the protection mechanism, such as using malformed inputs that can still be processed by the component that receives those inputs. Depending on functionality, an application firewall might inadvertently reject or modify legitimate requests. Finally, some manual effort may be required for customization.
How to detect it
Automated Static Analysis - Binary or Bytecode
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Manual Static Analysis - Binary or Bytecode
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Dynamic Analysis with Manual Results Interpretation
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Manual Static Analysis - Source Code
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: High
Automated Static Analysis - Source Code
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Architecture or Design Review
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: High
Code examples
Illustrative examples from MITRE showing how the weakness appears in code.
This login webpage includes a weather widget from an external website:
Vulnerable example
<div class="header"> Welcome!Attack input
...Weather widget code....Illustrative examples
Real CVEs that MITRE cites as examples of this weakness.
- CVE-2010-2076 — Product does not properly reject DTDs in SOAP messages, which allows remote attackers to read arbitrary files, send HTTP requests to intranet servers, or cause a denial of service.
- CVE-2004-0285 — Modification of assumed-immutable configuration variable in include file allows file inclusion via direct request.
- CVE-2004-0030 — Modification of assumed-immutable configuration variable in include file allows file inclusion via direct request.
- CVE-2004-0068 — Modification of assumed-immutable configuration variable in include file allows file inclusion via direct request.
- CVE-2005-2157 — Modification of assumed-immutable configuration variable in include file allows file inclusion via direct request.
- CVE-2005-2162 — Modification of assumed-immutable configuration variable in include file allows file inclusion via direct request.
- CVE-2005-2198 — Modification of assumed-immutable configuration variable in include file allows file inclusion via direct request.
- CVE-2004-0128 — Modification of assumed-immutable variable in configuration script leads to file inclusion.
- CVE-2005-1864 — PHP file inclusion.
- CVE-2005-1869 — PHP file inclusion.
- CVE-2005-1870 — PHP file inclusion.
- CVE-2005-2154 — PHP local file inclusion.
- CVE-2002-1704 — PHP remote file include.
- CVE-2002-1707 — PHP remote file include.
- CVE-2005-1964 — PHP remote file include.
- CVE-2005-1681 — PHP remote file include.
- CVE-2005-2086 — PHP remote file include.
- CVE-2004-0127 — Directory traversal vulnerability in PHP include statement.
- CVE-2005-1971 — Directory traversal vulnerability in PHP include statement.
- CVE-2005-3335 — PHP file inclusion issue, both remote and local; local include uses ".." and "%00" characters as a manipulation, but many remote file inclusion issues probably have this vector.
Attack patterns
CAPEC attack patterns that exploit this weakness.
- CAPEC-175: Code Inclusion
- CAPEC-201: Serialized Data External Linking
- CAPEC-228: DTD Injection
- CAPEC-251: Local Code Inclusion
- CAPEC-252: PHP Local File Inclusion
- CAPEC-253: Remote Code Inclusion
- CAPEC-263: Force Use of Corrupted Files
- CAPEC-538: Open-Source Library Manipulation
- CAPEC-549: Local Execution of Code
- CAPEC-640: Inclusion of Code in Existing Process
- CAPEC-660: Root/Jailbreak Detection Evasion via Hooking
- CAPEC-695: Repo Jacking
- CAPEC-698: Install Malicious Extension
Frequently asked questions
Common questions about CWE-829.
- What is CWE-829?
- The product imports, requires, or includes executable functionality (such as a library) from a source that is outside of the intended control sphere.
- What CVEs are caused by CWE-829?
- 154 recorded CVEs are attributed to CWE-829, including CVE-2025-32463, CVE-2026-27941, CVE-2026-1699. 1 are listed in CISA's Known Exploited Vulnerabilities (KEV) catalog.
- How do you prevent CWE-829?
- Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482].
- How is CWE-829 detected?
- Automated Static Analysis - Binary or Bytecode: According to SOAR [REF-1479], the following detection techniques may be useful:
- What are the consequences of CWE-829?
- Exploiting CWE-829 can lead to: Execute Unauthorized Code or Commands.
- Is CWE-829 actively exploited?
- Yes. 1 CWE-829 vulnerabilities are in CISA's KEV catalog of actively exploited flaws, out of 154 recorded CVEs.
References
- MITRE CWE definition (CWE-829) (opens in a new tab)
- CWE-829 vulnerabilities on NVD (opens in a new tab)
- Learn: What is a CWE?
Weakness data is sourced from the MITRE CWE catalog (v4.20). CVE associations are aggregated and kept current by RadicalNotion.AI.
Stay ahead of CWE-829
Get alerted the moment a new CWE-829 vulnerability affects your stack, with AI-written analysis, severity context, and remediation guidance.