惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Jina AI
Jina AI
博客园 - Franky
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
量子位
雷峰网
雷峰网
宝玉的分享
宝玉的分享
V
Visual Studio Blog
博客园_首页
小众软件
小众软件
The Cloudflare Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
S
SegmentFault 最新的问题
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(gateway): fail closed on runtime config edits (#70726...
drobison00 · 2026-04-24 · via Recent Commits to openclaw:main

@@ -151,7 +151,7 @@ describe("gateway tool", () => {

151151

const tool = requireGatewayTool(sessionKey);

152152153153

const raw =

154-

'{\n agents: { defaults: { workspace: "~/openclaw" } },\n tools: { exec: { ask: "on-miss", security: "allowlist" } }\n}\n';

154+

'{\n agents: { defaults: { systemPromptOverride: "You are a terse assistant." } },\n tools: { exec: { ask: "on-miss", security: "allowlist" } }\n}\n';

155155

await tool.execute("call2", {

156156

action: "config.apply",

157157

raw,

@@ -209,7 +209,7 @@ describe("gateway tool", () => {

209209

raw: '{ tools: { exec: { safeBins: ["bash"], safeBinProfiles: { bash: { allowedValueFlags: ["-c"] } } } } }',

210210

}),

211211

).rejects.toThrow(

212-

"gateway config.patch cannot change protected config paths: tools.exec.safeBins, tools.exec.safeBinProfiles",

212+

"gateway config.patch cannot change protected config paths: tools.exec.safeBinProfiles.bash.allowedValueFlags, tools.exec.safeBins",

213213

);

214214

expect(callGatewayTool).toHaveBeenCalledWith("config.get", expect.any(Object), {});

215215

expect(callGatewayTool).not.toHaveBeenCalledWith(

@@ -373,7 +373,7 @@ describe("gateway tool", () => {

373373

await expect(

374374

tool.execute("call-missing-protected", {

375375

action: "config.apply",

376-

raw: '{ agents: { defaults: { workspace: "~/openclaw" } } }',

376+

raw: '{ agents: { defaults: { systemPromptOverride: "You are a terse assistant." } } }',

377377

}),

378378

).rejects.toThrow(

379379

"gateway config.apply cannot change protected config paths: tools.exec.ask, tools.exec.security",

@@ -405,6 +405,44 @@ describe("gateway tool", () => {

405405

);

406406

});

407407408+

it("rejects config.patch when it rewrites gateway.remote.url", async () => {

409+

const tool = requireGatewayTool();

410+411+

await expect(

412+

tool.execute("call-remote-redirect", {

413+

action: "config.patch",

414+

raw: '{ gateway: { remote: { url: "wss://attacker.example/collect" } } }',

415+

}),

416+

).rejects.toThrow(

417+

"gateway config.patch cannot change protected config paths: gateway.remote.url",

418+

);

419+

expect(callGatewayTool).toHaveBeenCalledWith("config.get", expect.any(Object), {});

420+

expect(callGatewayTool).not.toHaveBeenCalledWith(

421+

"config.patch",

422+

expect.any(Object),

423+

expect.anything(),

424+

);

425+

});

426+427+

it("rejects config.patch when it rewrites global tools policy", async () => {

428+

const tool = requireGatewayTool();

429+430+

await expect(

431+

tool.execute("call-tools-policy", {

432+

action: "config.patch",

433+

raw: '{ tools: { allow: ["exec"], elevated: { enabled: true } } }',

434+

}),

435+

).rejects.toThrow(

436+

"gateway config.patch cannot change protected config paths: tools.allow, tools.elevated.enabled",

437+

);

438+

expect(callGatewayTool).toHaveBeenCalledWith("config.get", expect.any(Object), {});

439+

expect(callGatewayTool).not.toHaveBeenCalledWith(

440+

"config.patch",

441+

expect.any(Object),

442+

expect.anything(),

443+

);

444+

});

445+408446

it("rejects config.patch that enables dangerouslyDisableDeviceAuth", async () => {

409447

const tool = requireGatewayTool();

410448

@@ -413,7 +451,9 @@ describe("gateway tool", () => {

413451

action: "config.patch",

414452

raw: "{ gateway: { controlUi: { dangerouslyDisableDeviceAuth: true } } }",

415453

}),

416-

).rejects.toThrow("cannot enable dangerous config flags");

454+

).rejects.toThrow(

455+

"gateway config.patch cannot change protected config paths: gateway.controlUi.dangerouslyDisableDeviceAuth",

456+

);

417457

expect(callGatewayTool).not.toHaveBeenCalledWith(

418458

"config.patch",

419459

expect.any(Object),

@@ -429,7 +469,9 @@ describe("gateway tool", () => {

429469

action: "config.patch",

430470

raw: "{ hooks: { gmail: { allowUnsafeExternalContent: true } } }",

431471

}),

432-

).rejects.toThrow("cannot enable dangerous config flags");

472+

).rejects.toThrow(

473+

"gateway config.patch cannot change protected config paths: hooks.gmail.allowUnsafeExternalContent",

474+

);

433475

expect(callGatewayTool).not.toHaveBeenCalledWith(

434476

"config.patch",

435477

expect.any(Object),

@@ -445,7 +487,9 @@ describe("gateway tool", () => {

445487

action: "config.patch",

446488

raw: "{ tools: { exec: { applyPatch: { workspaceOnly: false } } } }",

447489

}),

448-

).rejects.toThrow("cannot enable dangerous config flags");

490+

).rejects.toThrow(

491+

"gateway config.patch cannot change protected config paths: tools.exec.applyPatch.workspaceOnly",

492+

);

449493

expect(callGatewayTool).not.toHaveBeenCalledWith(

450494

"config.patch",

451495

expect.any(Object),

@@ -461,7 +505,9 @@ describe("gateway tool", () => {

461505

action: "config.patch",

462506

raw: "{ gateway: { controlUi: { allowInsecureAuth: true } } }",

463507

}),

464-

).rejects.toThrow("cannot enable dangerous config flags");

508+

).rejects.toThrow(

509+

"gateway config.patch cannot change protected config paths: gateway.controlUi.allowInsecureAuth",

510+

);

465511

expect(callGatewayTool).not.toHaveBeenCalledWith(

466512

"config.patch",

467513

expect.any(Object),

@@ -477,7 +523,9 @@ describe("gateway tool", () => {

477523

action: "config.patch",

478524

raw: "{ gateway: { controlUi: { dangerouslyAllowHostHeaderOriginFallback: true } } }",

479525

}),

480-

).rejects.toThrow("cannot enable dangerous config flags");

526+

).rejects.toThrow(

527+

"gateway config.patch cannot change protected config paths: gateway.controlUi.dangerouslyAllowHostHeaderOriginFallback",

528+

);

481529

expect(callGatewayTool).not.toHaveBeenCalledWith(

482530

"config.patch",

483531

expect.any(Object),

@@ -502,7 +550,7 @@ describe("gateway tool", () => {

502550

);

503551

});

504552505-

it("allows config.patch when a dangerous flag is already enabled and stays enabled", async () => {

553+

it("allows config.patch on allowlisted paths when a dangerous flag is already enabled", async () => {

506554

vi.mocked(callGatewayTool).mockImplementationOnce(async (method: string) => {

507555

if (method === "config.get") {

508556

return {

@@ -518,8 +566,7 @@ describe("gateway tool", () => {

518566

const sessionKey = "agent:main:whatsapp:dm:+15555550123";

519567

const tool = requireGatewayTool(sessionKey);

520568521-

const raw =

522-

'{ hooks: { gmail: { allowUnsafeExternalContent: true } }, agents: { defaults: { workspace: "~/test" } } }';

569+

const raw = '{ agents: { defaults: { systemPromptOverride: "You are a terse assistant." } } }';

523570

await tool.execute("call-keep-dangerous", {

524571

action: "config.patch",

525572

raw,

@@ -540,7 +587,9 @@ describe("gateway tool", () => {

540587

action: "config.apply",

541588

raw: '{ tools: { exec: { ask: "on-miss", security: "allowlist", applyPatch: { workspaceOnly: false } } } }',

542589

}),

543-

).rejects.toThrow("cannot enable dangerous config flags");

590+

).rejects.toThrow(

591+

"gateway config.apply cannot change protected config paths: tools.exec.applyPatch.workspaceOnly",

592+

);

544593

expect(callGatewayTool).not.toHaveBeenCalledWith(

545594

"config.apply",

546595

expect.any(Object),