CVE Vulnerabilities

CVE-2026-28695

Improper Neutralization of Special Elements Used in a Template Engine

Published: Mar 04, 2026 | Modified: Mar 05, 2026
CVSS 3.x
7.2
HIGH
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
CVSS 2.x
RedHat/V2
RedHat/V3
Ubuntu
root.io logo minimus.io logo echo.ai logo

Craft is a content management system (CMS). There is an authenticated admin RCE in Craft CMS 5.8.21 via Server-Side Template Injection using the create() Twig function combined with a Symfony Process gadget chain. The create() Twig function exposes Craft::createObject(), which allows instantiation of arbitrary PHP classes with constructor arguments. Combined with the bundled symfony/process dependency, this enables RCE. This bypasses the fix implemented for CVE-2025-57811 (patched in 5.8.7). This vulnerability is fixed in 5.9.0-beta.1 and 4.17.0-beta.1.

Weakness

The product uses a template engine to insert or process externally-influenced input, but it does not neutralize or incorrectly neutralizes special elements or syntax that can be interpreted as template expressions or other code directives when processed by the engine.

Affected Software

NameVendorStart VersionEnd Version
Craft_cmsCraftcms4.0.0 (excluding)4.17.0 (excluding)
Craft_cmsCraftcms5.0.0 (excluding)5.9.0 (excluding)
Craft_cmsCraftcms4.0.0 (including)4.0.0 (including)
Craft_cmsCraftcms4.0.0-rc1 (including)4.0.0-rc1 (including)
Craft_cmsCraftcms4.0.0-rc2 (including)4.0.0-rc2 (including)
Craft_cmsCraftcms4.0.0-rc3 (including)4.0.0-rc3 (including)
Craft_cmsCraftcms5.0.0 (including)5.0.0 (including)
Craft_cmsCraftcms5.0.0-rc1 (including)5.0.0-rc1 (including)

Extended Description

Many web applications use template engines that allow developers to insert externally-influenced values into free text or messages in order to generate a full web page, document, message, etc. Such engines include Twig, Jinja2, Pug, Java Server Pages, FreeMarker, Velocity, ColdFusion, Smarty, and many others - including PHP itself. Some CMS (Content Management Systems) also use templates. Template engines often have their own custom command or expression language. If an attacker can influence input into a template before it is processed, then the attacker can invoke arbitrary expressions, i.e. perform injection attacks. For example, in some template languages, an attacker could inject the expression “{{7*7}}” and determine if the output returns “49” instead. The syntax varies depending on the language. In some cases, XSS-style attacks can work, which can obscure the root cause if the developer does not closely investigate the root cause of the error. Template engines can be used on the server or client, so both “sides” could be affected by injection. The mechanisms of attack or the affected technologies might be different, but the mistake is fundamentally the same.

Potential Mitigations

References