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

推荐订阅源

小众软件
小众软件
B
Blog RSS Feed
美团技术团队
博客园 - 【当耐特】
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
Vercel News
Vercel News
P
Proofpoint News Feed
IT之家
IT之家
I
InfoQ
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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(security): audit open dm tool exposure (#92883) · ope...
yu-xin-c · 2026-06-16 · via Recent Commits to openclaw:main

@@ -29,8 +29,7 @@ describe("security audit trust model findings", () => {

2929

tools: { elevated: { enabled: true, allowFrom: { whatsapp: ["+1"] } } },

3030

channels: { whatsapp: { groupPolicy: "open" } },

3131

} satisfies OpenClawConfig,

32-

assert: () => {

33-

const findings = audit(cases[0].cfg);

32+

assert: (findings: ReturnType<typeof audit>) => {

3433

expect(

3534

findings.some(

3635

(finding) =>

@@ -46,8 +45,7 @@ describe("security audit trust model findings", () => {

4645

channels: { whatsapp: { groupPolicy: "open" } },

4746

tools: { elevated: { enabled: false } },

4847

} satisfies OpenClawConfig,

49-

assert: () => {

50-

const findings = audit(cases[1].cfg);

48+

assert: (findings: ReturnType<typeof audit>) => {

5149

expect(

5250

findings.some(

5351

(finding) =>

@@ -71,8 +69,7 @@ describe("security audit trust model findings", () => {

7169

},

7270

},

7371

} satisfies OpenClawConfig,

74-

assert: () => {

75-

const findings = audit(cases[2].cfg);

72+

assert: (findings: ReturnType<typeof audit>) => {

7673

expect(

7774

findings.some(

7875

(finding) => finding.checkId === "security.exposure.open_groups_with_runtime_or_fs",

@@ -91,8 +88,7 @@ describe("security audit trust model findings", () => {

9188

fs: { workspaceOnly: true },

9289

},

9390

} satisfies OpenClawConfig,

94-

assert: () => {

95-

const findings = audit(cases[3].cfg);

91+

assert: (findings: ReturnType<typeof audit>) => {

9692

expect(

9793

findings.some(

9894

(finding) => finding.checkId === "security.exposure.open_groups_with_runtime_or_fs",

@@ -117,8 +113,7 @@ describe("security audit trust model findings", () => {

117113

},

118114

tools: { elevated: { enabled: false } },

119115

} satisfies OpenClawConfig,

120-

assert: () => {

121-

const findings = audit(cases[4].cfg);

116+

assert: (findings: ReturnType<typeof audit>) => {

122117

const finding = requireMultiUserHeuristicFinding(findings);

123118

expect(finding.severity).toBe("warn");

124119

expect(finding.detail).toContain(

@@ -138,19 +133,108 @@ describe("security audit trust model findings", () => {

138133

},

139134

tools: { elevated: { enabled: false } },

140135

} satisfies OpenClawConfig,

141-

assert: () => {

142-

const findings = audit(cases[5].cfg);

136+

assert: (findings: ReturnType<typeof audit>) => {

143137

expect(

144138

findings.some(

145139

(finding) => finding.checkId === "security.trust_model.multi_user_heuristic",

146140

),

147141

).toBe(false);

148142

},

149143

},

144+

{

145+

name: "flags open dmPolicy when tools.elevated is enabled",

146+

cfg: {

147+

tools: { elevated: { enabled: true, allowFrom: { feishu: ["ou_123"] } } },

148+

channels: { feishu: { groupPolicy: "disabled", dmPolicy: "open" } },

149+

} satisfies OpenClawConfig,

150+

assert: (findings: ReturnType<typeof audit>) => {

151+

const finding = findings.find(

152+

(entry) => entry.checkId === "security.exposure.open_groups_with_elevated",

153+

);

154+

expect(finding?.severity).toBe("critical");

155+

expect(finding?.detail).toContain("channels.feishu.dmPolicy");

156+

},

157+

},

158+

{

159+

name: "flags open dmPolicy when runtime/filesystem tools are exposed without guards",

160+

cfg: {

161+

channels: { feishu: { groupPolicy: "disabled", dmPolicy: "open" } },

162+

tools: { elevated: { enabled: false }, profile: "coding" },

163+

} satisfies OpenClawConfig,

164+

assert: (findings: ReturnType<typeof audit>) => {

165+

const finding = findings.find(

166+

(entry) => entry.checkId === "security.exposure.open_groups_with_runtime_or_fs",

167+

);

168+

expect(finding?.severity).toBe("critical");

169+

expect(finding?.detail).toContain("channels.feishu.dmPolicy");

170+

},

171+

},

172+

{

173+

name: "flags account-level open dmPolicy",

174+

cfg: {

175+

channels: {

176+

discord: {

177+

dmPolicy: "allowlist",

178+

accounts: { work: { dmPolicy: "open" } },

179+

},

180+

},

181+

} satisfies OpenClawConfig,

182+

assert: (findings: ReturnType<typeof audit>) => {

183+

const finding = findings.find(

184+

(entry) => entry.checkId === "security.exposure.open_groups_with_elevated",

185+

);

186+

expect(finding?.detail).toContain("channels.discord.accounts.work.dmPolicy");

187+

expect(finding?.detail).not.toContain("channels.discord.dmPolicy");

188+

},

189+

},

190+

{

191+

name: "flags supported legacy open dm.policy",

192+

cfg: {

193+

channels: { discord: { dm: { policy: "open" } } },

194+

} satisfies OpenClawConfig,

195+

assert: (findings: ReturnType<typeof audit>) => {

196+

const finding = findings.find(

197+

(entry) => entry.checkId === "security.exposure.open_groups_with_elevated",

198+

);

199+

expect(finding?.detail).toContain("channels.discord.dm.policy");

200+

},

201+

},

202+

{

203+

name: "preserves the detected nested-only DM policy path in remediation",

204+

cfg: {

205+

channels: { matrix: { dm: { policy: "open" } } },

206+

} satisfies OpenClawConfig,

207+

assert: (findings: ReturnType<typeof audit>) => {

208+

const finding = findings.find(

209+

(entry) => entry.checkId === "security.exposure.open_groups_with_elevated",

210+

);

211+

expect(finding?.detail).toContain("channels.matrix.dm.policy");

212+

expect(finding?.remediation).toContain("each listed group/DM policy");

213+

expect(finding?.remediation).not.toContain("dmPolicy");

214+

},

215+

},

216+

{

217+

name: "prefers canonical dmPolicy over conflicting legacy dm.policy",

218+

cfg: {

219+

channels: {

220+

discord: {

221+

dmPolicy: "allowlist",

222+

dm: { policy: "open" },

223+

},

224+

},

225+

} satisfies OpenClawConfig,

226+

assert: (findings: ReturnType<typeof audit>) => {

227+

expect(

228+

findings.some((finding) =>

229+

finding.checkId.startsWith("security.exposure.open_groups_"),

230+

),

231+

).toBe(false);

232+

},

233+

},

150234

] as const;

151235152236

for (const testCase of cases) {

153-

testCase.assert();

237+

testCase.assert(audit(testCase.cfg));

154238

}

155239

});

156240

});