GHSA-6xcw-7xm6-48c6: Code Injection
Impact
Two stages of expression code generation built source text by calling the global JSON.stringify at generation time: the compiler when printing synthetic string literals, and the isolate bridge when interpolating a timezone value into its per-evaluation wrapper. An expression that replaced that global therefore changed the code that was subsequently generated and executed, turning literal data into executable source. The patch renders both code-generation stages through a reference captured at module load, so a later change to global state cannot alter the generated source.
This vulnerability only affects instances running the legacy expression engine. The vm expression engine, which is the default on the patched releases, is not affected.
Patches
The issue has been fixed in n8n versions 1.123.76, 2.37.7, and 2.38.2. Users should upgrade to one of these versions or later to remediate the vulnerability.
Workarounds
If upgrading is not immediately possible, administrators should consider the following temporary mitigations: - Set the environment variable N8NEXPRESSIONENGINE=vm to switch to the vm expression engine, which is not affected by this vulnerability. - Restrict n8n instance access to fully trusted users only. - Ensure the n8n process runs under a dedicated low-privilege OS user account to limit the impact of any command execution.
These workarounds do not fully remediate the risk and should only be used as short-term mitigation measures.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/n8nto a version that resolves this vulnerability.Fixed in 2.37.7 - Upgrade
Upgrade
npm/n8nto a version that resolves this vulnerability.Fixed in 2.38.2 - Upgrade
Upgrade
npm/n8nto a version that resolves this vulnerability.Fixed in 1.123.76 - Upgrade
Upgrade
n8nto a version that resolves this vulnerability.Fixed in 1.123.76 - Upgrade
Upgrade
n8nto a version that resolves this vulnerability.Fixed in 2.37.7 - Upgrade
Upgrade
n8nto a version that resolves this vulnerability.Fixed in 2.38.2 - Configuration
Set the environment variable N8N_EXPRESSION_ENGINE=vm to switch from the legacy expression engine to the vm expression engine (not affected by the vulnerability) as a short-term mitigation if upgrading is not immediately possible.
n8n N8N_EXPRESSION_ENGINE = vm - Compensating control
Ensure the n8n process runs under a dedicated low-privilege OS user account to limit the impact of any command execution.
- Compensating control
Restrict n8n instance access to fully trusted users only.
Event History
Frequently Asked Questions
Which n8n deployments are affected?
Only instances using the legacy expression engine are affected. The vm expression engine is not affected and is the default on patched releases.
What does an attacker need to exploit this issue?
An attacker needs an expression that can replace the global JSON.stringify function. That replacement can then alter generated source code when synthetic string literals are printed or a timezone value is interpolated into the per-evaluation wrapper.
How can I mitigate the issue before upgrading?
Set N8N_EXPRESSION_ENGINE=vm to use the unaffected vm expression engine. Upgrade to n8n 1.123.76, 2.37.7, or 2.38.2 or later as soon as possible.