CI4MS .env File Injection Vulnerability (CVE-2026-39394)
CI4MS versions prior to 0.31.4.0 are vulnerable to .env file injection via the Install::index() controller due to insufficient input validation and bypassed CSRF protection, allowing attackers to inject arbitrary configuration directives.
CI4MS is a CodeIgniter 4-based CMS skeleton designed to provide a production-ready, modular architecture with features like RBAC authorization and theme support. Versions prior to 0.31.4.0 contain a critical vulnerability (CVE-2026-39394) within the Install::index() controller. This controller reads the 'host' POST parameter without proper validation and passes it directly to the updateEnvSettings() function. This function, in turn, uses preg_replace() to write the value into the .env file. The lack of newline character stripping in the input allows an attacker to inject arbitrary configuration directives. Furthermore, the installation routes have CSRF protection explicitly disabled, and the InstallFilter can be bypassed when the cache('settings') is empty, such as during initial deployment or after cache expiry. This vulnerability allows unauthenticated attackers to modify the application's configuration, leading to potentially complete system compromise. CI4MS deployments are vulnerable until upgraded to version 0.31.4.0 or later.
Attack Chain
- An unauthenticated attacker sends a POST request to the
/installroute with a malicious 'host' parameter. - The
Install::index()controller receives the POST request. - The controller bypasses CSRF protection due to it being explicitly disabled.
- The
InstallFilteris bypassed because thecache('settings')is empty (e.g., on a fresh deployment). - The 'host' parameter, containing injected configuration directives with newline characters, is passed to the
updateEnvSettings()function. - The
updateEnvSettings()function usespreg_replace()to write the attacker-controlled 'host' parameter into the .env file without proper sanitization. - The injected configuration directives are written into the .env file, modifying the application's configuration.
- The attacker can now leverage the modified configuration for further malicious activities, such as gaining unauthorized access, escalating privileges, or injecting malicious code.
Impact
Successful exploitation of this vulnerability allows an attacker to inject arbitrary configuration directives into the .env file. This can lead to a wide range of consequences, including but not limited to: database credential compromise, modification of application behavior, remote code execution, and complete system takeover. The number of potential victims is dependent on the number of CI4MS deployments running vulnerable versions (pre-0.31.4.0). Targeted sectors are likely to be diverse, reflecting the broad range of applications for which CI4MS is used.
Recommendation
- Upgrade CI4MS to version 0.31.4.0 or later to patch CVE-2026-39394.
- Monitor web server logs for POST requests to the
/installroute containing newline characters in the 'host' parameter to detect potential exploitation attempts. Implement the provided Sigma rules to detect this activity. - Implement strict input validation on all user-supplied data, especially for parameters that are used to modify configuration files.
- Ensure that CSRF protection is enabled and functioning correctly for all sensitive routes, including installation routes.
Detection coverage 2
Detect CI4MS .env Injection Attempt via Install Route
highDetects attempts to exploit the CI4MS .env injection vulnerability (CVE-2026-39394) by monitoring POST requests to the /install route containing newline characters in the 'host' parameter.
Detect CI4MS .env File Modification with Suspicious Content
criticalDetects modification of the .env file in a CI4MS installation directory containing suspicious content, indicating potential exploitation of CVE-2026-39394.
Detection queries are available on the platform. Get full rules →