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

推荐订阅源

L
LangChain Blog
S
SegmentFault 最新的问题
V
Visual Studio Blog
J
Java Code Geeks
宝玉的分享
宝玉的分享
美团技术团队
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
量子位
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
博客园 - 叶小钗
月光博客
月光博客
P
Proofpoint News Feed
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Stack Overflow Blog
Stack Overflow Blog

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: gate owner-only HTTP tools (#90261) · openclaw/openc...
pgondhi987 · 2026-06-08 · via Recent Commits to openclaw:main

@@ -108,6 +108,7 @@ vi.mock("../agents/openclaw-tools.js", () => {

108108

agentTo: lastCreateOpenClawToolsContext?.agentTo,

109109

agentThreadId: lastCreateOpenClawToolsContext?.agentThreadId,

110110

},

111+

inheritedToolDenylist: lastCreateOpenClawToolsContext?.inheritedToolDenylist,

111112

}),

112113

},

113114

{

@@ -122,6 +123,11 @@ vi.mock("../agents/openclaw-tools.js", () => {

122123

throw toolInputError("invalid args");

123124

},

124125

},

126+

{

127+

name: "cron",

128+

parameters: { type: "object", properties: {} },

129+

execute: async () => ({ ok: true, result: "cron" }),

130+

},

125131

{

126132

name: "exec",

127133

parameters: { type: "object", properties: {} },

@@ -692,6 +698,34 @@ describe("POST /tools/invoke", () => {

692698

});

693699

});

694700701+

it("propagates owner-only HTTP denies into spawned session inheritance", async () => {

702+

cfg = {

703+

...cfg,

704+

agents: {

705+

list: [

706+

{

707+

id: "main",

708+

default: true,

709+

tools: { allow: ["sessions_spawn", "cron", "gateway", "nodes"] },

710+

},

711+

],

712+

},

713+

gateway: { tools: { allow: ["sessions_spawn", "cron", "gateway", "nodes"] } },

714+

};

715+716+

const res = await invokeTool({

717+

port: sharedPort,

718+

headers: gatewayAuthHeaders(),

719+

tool: "sessions_spawn",

720+

sessionKey: "main",

721+

});

722+723+

const body = await expectOkInvokeResponse(res);

724+

expect(body.result?.inheritedToolDenylist).toEqual(

725+

expect.arrayContaining(["cron", "gateway", "nodes"]),

726+

);

727+

});

728+695729

it("denies sessions_send via HTTP gateway", async () => {

696730

setMainAllowedTools({ allow: ["sessions_send"] });

697731

@@ -730,6 +764,47 @@ describe("POST /tools/invoke", () => {

730764

expect(body.error?.type).toBe("tool_error");

731765

});

732766767+

it("keeps owner-only tools unavailable to non-owner HTTP callers despite gateway.tools.allow", async () => {

768+

setMainAllowedTools({

769+

allow: ["cron", "gateway", "nodes"],

770+

gatewayAllow: ["cron", "gateway", "nodes"],

771+

});

772+773+

for (const tool of ["cron", "gateway", "nodes"]) {

774+

const res = await invokeToolAuthed({

775+

tool,

776+

sessionKey: "main",

777+

});

778+779+

expect(res.status, tool).toBe(404);

780+

const body = await res.json();

781+

expect(body.ok, tool).toBe(false);

782+

expect(body.error?.type, tool).toBe("not_found");

783+

}

784+

});

785+786+

it("keeps shared-secret bearer auth as owner for explicitly allowed owner-only tools", async () => {

787+

setMainAllowedTools({ allow: ["nodes"], gatewayAllow: ["nodes"] });

788+

vi.mocked(authorizeHttpGatewayConnect).mockResolvedValueOnce({

789+

ok: true,

790+

method: "token",

791+

});

792+793+

const res = await invokeTool({

794+

port: sharedPort,

795+

headers: {

796+

authorization: "Bearer secret",

797+

"x-openclaw-scopes": "operator.write",

798+

},

799+

tool: "nodes",

800+

sessionKey: "main",

801+

});

802+803+

const body = await expectOkInvokeResponse(res);

804+

expect(body.result).toEqual({ ok: true, result: "nodes" });

805+

expect(lastCreateOpenClawToolsContext?.senderIsOwner).toBe(true);

806+

});

807+733808

it("treats gateway.tools.deny as higher priority than gateway.tools.allow", async () => {

734809

setMainAllowedTools({

735810

allow: ["gateway"],

@@ -995,6 +1070,47 @@ describe("tools.invoke Gateway RPC", () => {

9951070

expect(hookCtx.sessionKey).toBe("agent:main:main");

9961071

});

99710721073+

it("keeps owner-only tools unavailable to non-owner RPC callers despite gateway.tools.allow", async () => {

1074+

setMainAllowedTools({

1075+

allow: ["cron", "gateway", "nodes"],

1076+

gatewayAllow: ["cron", "gateway", "nodes"],

1077+

});

1078+1079+

for (const tool of ["cron", "gateway", "nodes"]) {

1080+

const call = await invokeToolsRpc({

1081+

name: tool,

1082+

args: {},

1083+

sessionKey: "main",

1084+

});

1085+1086+

expect(call?.[0], tool).toBe(true);

1087+

expect(call?.[1]?.ok, tool).toBe(false);

1088+

expect(call?.[1]?.toolName, tool).toBe(tool);

1089+

const error = call?.[1]?.error as { code?: string; message?: string } | undefined;

1090+

expect(error?.code, tool).toBe("not_found");

1091+

}

1092+

expect(lastCreateOpenClawToolsContext?.senderIsOwner).toBe(false);

1093+

});

1094+1095+

it("keeps operator.admin RPC callers as owner for explicitly allowed owner-only tools", async () => {

1096+

setMainAllowedTools({ allow: ["nodes"], gatewayAllow: ["nodes"] });

1097+1098+

const call = await invokeToolsRpc(

1099+

{

1100+

name: "nodes",

1101+

args: {},

1102+

sessionKey: "main",

1103+

},

1104+

["operator.admin"],

1105+

);

1106+1107+

expect(call?.[0]).toBe(true);

1108+

expect(call?.[1]?.ok).toBe(true);

1109+

expect(call?.[1]?.toolName).toBe("nodes");

1110+

expect(call?.[1]?.output).toEqual({ ok: true, result: "nodes" });

1111+

expect(lastCreateOpenClawToolsContext?.senderIsOwner).toBe(true);

1112+

});

1113+9981114

it("returns typed approval-needed refusal when the policy hook blocks", async () => {

9991115

setMainAllowedTools({ allow: ["tools_invoke_test"] });

10001116

hookMocks.runBeforeToolCallHook.mockResolvedValueOnce({