Vulnerability Description
Zen C is a systems programming language that compiles to human-readable GNU C/C11. Prior to version 0.4.2, a command injection vulnerability (CWE-78) in the Zen C compiler allows local attackers to execute arbitrary shell commands by providing a specially crafted output filename via the `-o` command-line argument. The vulnerability existed in the `main` application logic (specifically in `src/main.c`), where the compiler constructed a shell command string to invoke the backend C compiler. This command string was built by concatenating various arguments, including the user-controlled output filename, and was subsequently executed using the `system()` function. Because `system()` invokes a shell to parse and execute the command, shell metacharacters within the output filename were interpreted by the shell, leading to arbitrary command execution. An attacker who can influence the command-line arguments passed to the `zc` compiler (like through a build script or a CI/CD pipeline configuration) can execute arbitrary commands with the privileges of the user running the compiler. The vulnerability has been fixed in version 0.4.2 by removing `system()` calls, implementing `ArgList`, and internal argument handling. Users are advised to update to Zen C version v0.4.2 or later.
CVSS Score
MEDIUM
Affected Products
| Vendor | Product | Versions |
|---|---|---|
| Zenc-Lang | Zen C | < 0.4.2 |
Related Weaknesses (CWE)
References
- https://github.com/z-libs/Zen-C/security/advisories/GHSA-9rff-x96h-76h2ExploitMitigationVendor Advisory
- https://f0nduesav0yarde.github.io/blog/vulnerabilities/cve-2026-28207/ExploitThird Party Advisory
- https://github.com/z-libs/Zen-C/security/advisories/GHSA-9rff-x96h-76h2ExploitMitigationVendor Advisory
FAQ
What is CVE-2026-28207?
CVE-2026-28207 is a vulnerability with a CVSS score of 6.6 (MEDIUM). Zen C is a systems programming language that compiles to human-readable GNU C/C11. Prior to version 0.4.2, a command injection vulnerability (CWE-78) in the Zen C compiler allows local attackers to ex...
How severe is CVE-2026-28207?
CVE-2026-28207 has been rated MEDIUM with a CVSS base score of 6.6/10. Review the CVSS metrics above for detailed severity breakdown.
Is there a patch for CVE-2026-28207?
Check the references section above for vendor advisories and patch information. Affected products include: Zenc-Lang Zen C.