Craft is a content management system (CMS). Prior to 4.17.0-beta.1 and 5.9.0-beta.1, an authenticated administrator can achieve Remote Code Execution (RCE) by injecting a Server-Side Template Injection (SSTI) payload into Twig template fields (e.g., Email Templates). By calling the craft.app.fs.write() method, an attacker can write a malicious PHP script to a web-accessible directory and subsequently access it via the browser to execute arbitrary system commands. This vulnerability is fixed in 4.17.0-beta.1 and 5.9.0-beta.1.
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.
| Name | Vendor | Start Version | End Version |
|---|---|---|---|
| Craft_cms | Craftcms | 4.0.0 (excluding) | 4.17.0 (excluding) |
| Craft_cms | Craftcms | 5.0.0 (excluding) | 5.9.0 (excluding) |
| Craft_cms | Craftcms | 4.0.0 (including) | 4.0.0 (including) |
| Craft_cms | Craftcms | 4.0.0-rc1 (including) | 4.0.0-rc1 (including) |
| Craft_cms | Craftcms | 4.0.0-rc2 (including) | 4.0.0-rc2 (including) |
| Craft_cms | Craftcms | 4.0.0-rc3 (including) | 4.0.0-rc3 (including) |
| Craft_cms | Craftcms | 5.0.0 (including) | 5.0.0 (including) |
| Craft_cms | Craftcms | 5.0.0-rc1 (including) | 5.0.0-rc1 (including) |
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.