CVE Vulnerabilities

CVE-2025-66299

Improper Control of Generation of Code ('Code Injection')

Published: Dec 01, 2025 | Modified: Dec 03, 2025
CVSS 3.x
N/A
Source:
NVD
CVSS 2.x
RedHat/V2
RedHat/V3
Ubuntu

Grav is a file-based Web platform. Prior to 1.8.0-beta.27, Grav CMS is vulnerable to a Server-Side Template Injection (SSTI) that allows any authenticated user with editor permissions to execute arbitrary code on the remote server, bypassing the existing security sandbox. Since the security sandbox does not fully protect the Twig object, it is possible to interact with it (e.g., call methods, read/write attributes) through maliciously crafted Twig template directives injected into a web page. This allows an authenticated editor to add arbitrary functions to the Twig attribute system.twig.safe_filters, effectively bypassing the Grav CMS sandbox. This vulnerability is fixed in 1.8.0-beta.27.

Weakness

The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment.

Affected Software

Name Vendor Start Version End Version
Grav Getgrav * 1.8.0 (excluding)
Grav Getgrav 1.8.0-beta1 (including) 1.8.0-beta1 (including)
Grav Getgrav 1.8.0-beta10 (including) 1.8.0-beta10 (including)
Grav Getgrav 1.8.0-beta11 (including) 1.8.0-beta11 (including)
Grav Getgrav 1.8.0-beta12 (including) 1.8.0-beta12 (including)
Grav Getgrav 1.8.0-beta13 (including) 1.8.0-beta13 (including)
Grav Getgrav 1.8.0-beta14 (including) 1.8.0-beta14 (including)
Grav Getgrav 1.8.0-beta15 (including) 1.8.0-beta15 (including)
Grav Getgrav 1.8.0-beta16 (including) 1.8.0-beta16 (including)
Grav Getgrav 1.8.0-beta17 (including) 1.8.0-beta17 (including)
Grav Getgrav 1.8.0-beta18 (including) 1.8.0-beta18 (including)
Grav Getgrav 1.8.0-beta19 (including) 1.8.0-beta19 (including)
Grav Getgrav 1.8.0-beta2 (including) 1.8.0-beta2 (including)
Grav Getgrav 1.8.0-beta20 (including) 1.8.0-beta20 (including)
Grav Getgrav 1.8.0-beta21 (including) 1.8.0-beta21 (including)
Grav Getgrav 1.8.0-beta22 (including) 1.8.0-beta22 (including)
Grav Getgrav 1.8.0-beta23 (including) 1.8.0-beta23 (including)
Grav Getgrav 1.8.0-beta24 (including) 1.8.0-beta24 (including)
Grav Getgrav 1.8.0-beta25 (including) 1.8.0-beta25 (including)
Grav Getgrav 1.8.0-beta26 (including) 1.8.0-beta26 (including)
Grav Getgrav 1.8.0-beta3 (including) 1.8.0-beta3 (including)
Grav Getgrav 1.8.0-beta4 (including) 1.8.0-beta4 (including)
Grav Getgrav 1.8.0-beta5 (including) 1.8.0-beta5 (including)
Grav Getgrav 1.8.0-beta6 (including) 1.8.0-beta6 (including)
Grav Getgrav 1.8.0-beta7 (including) 1.8.0-beta7 (including)
Grav Getgrav 1.8.0-beta8 (including) 1.8.0-beta8 (including)
Grav Getgrav 1.8.0-beta9 (including) 1.8.0-beta9 (including)

Potential Mitigations

  • Run your code in a “jail” or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which code can be executed by your product.
  • Examples include the Unix chroot jail and AppArmor. In general, managed code may provide some protection.
  • This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.
  • Be careful to avoid CWE-243 and other weaknesses related to jails.
  • 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.
  • To reduce the likelihood of code injection, use stringent allowlists that limit which constructs are allowed. If you are dynamically constructing code that invokes a function, then verifying that the input is alphanumeric might be insufficient. An attacker might still be able to reference a dangerous function that you did not intend to allow, such as system(), exec(), or exit().
  • For Python programs, it is frequently encouraged to use the ast.literal_eval() function instead of eval, since it is intentionally designed to avoid executing code. However, an adversary could still cause excessive memory or stack consumption via deeply nested structures [REF-1372], so the python documentation discourages use of ast.literal_eval() on untrusted data [REF-1373].

References