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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News

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(codex): sanitize approval preview text (#70569) · ope...
Lucenx9 · 2026-04-24 · via Recent Commits to openclaw:main

@@ -119,6 +119,185 @@ describe("Codex app-server approval bridge", () => {

119119

);

120120

});

121121122+

it("sanitizes command previews before forwarding approval text and events", async () => {

123+

const params = createParams();

124+

mockCallGatewayTool.mockResolvedValueOnce({

125+

id: "plugin:approval-sanitized-command",

126+

decision: "allow-once",

127+

});

128+129+

await handleCodexAppServerApprovalRequest({

130+

method: "item/commandExecution/requestApproval",

131+

requestParams: {

132+

threadId: "thread-1",

133+

turnId: "turn-1",

134+

itemId: "cmd-sanitized",

135+

command: ["pnpm", "test\n--watch", "\u001b[31mextensions/codex/src/app-server\u001b[0m"],

136+

},

137+

paramsForRun: params,

138+

threadId: "thread-1",

139+

turnId: "turn-1",

140+

});

141+142+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

143+

expect(requestPayload).toEqual(

144+

expect.objectContaining({

145+

description:

146+

"Command: pnpm test --watch extensions/codex/src/app-server\nSession: agent:main:session-1",

147+

}),

148+

);

149+

expect(params.onAgentEvent).toHaveBeenCalledWith(

150+

expect.objectContaining({

151+

stream: "approval",

152+

data: expect.objectContaining({

153+

status: "pending",

154+

command: "pnpm test --watch extensions/codex/src/app-server",

155+

}),

156+

}),

157+

);

158+

});

159+160+

it("preserves visible OSC-8 link labels in command previews", async () => {

161+

const params = createParams();

162+

mockCallGatewayTool.mockResolvedValueOnce({

163+

id: "plugin:approval-osc",

164+

decision: "allow-once",

165+

});

166+

const esc = "\u001b";

167+168+

await handleCodexAppServerApprovalRequest({

169+

method: "item/commandExecution/requestApproval",

170+

requestParams: {

171+

threadId: "thread-1",

172+

turnId: "turn-1",

173+

itemId: "cmd-osc",

174+

command: `prefix ${esc}]8;;https://example.com${esc}\\VISIBLE${esc}]8;;${esc}\\ suffix`,

175+

},

176+

paramsForRun: params,

177+

threadId: "thread-1",

178+

turnId: "turn-1",

179+

});

180+181+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

182+

expect(requestPayload).toEqual(

183+

expect.objectContaining({

184+

description: "Command: prefix VISIBLE suffix\nSession: agent:main:session-1",

185+

}),

186+

);

187+

expect(params.onAgentEvent).toHaveBeenCalledWith(

188+

expect.objectContaining({

189+

stream: "approval",

190+

data: expect.objectContaining({ command: "prefix VISIBLE suffix" }),

191+

}),

192+

);

193+

});

194+195+

it("strips bidi and invisible formatting controls from command previews", async () => {

196+

const params = createParams();

197+

mockCallGatewayTool.mockResolvedValueOnce({

198+

id: "plugin:approval-bidi",

199+

decision: "allow-once",

200+

});

201+202+

await handleCodexAppServerApprovalRequest({

203+

method: "item/commandExecution/requestApproval",

204+

requestParams: {

205+

threadId: "thread-1",

206+

turnId: "turn-1",

207+

itemId: "cmd-bidi",

208+

command: "echo safe\u202e cod.exe\u2066 hidden\u2069 \ufeffdone\u{e0100}",

209+

},

210+

paramsForRun: params,

211+

threadId: "thread-1",

212+

turnId: "turn-1",

213+

});

214+215+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

216+

expect(requestPayload).toEqual(

217+

expect.objectContaining({

218+

description: "Command: echo safe cod.exe hidden done\nSession: agent:main:session-1",

219+

}),

220+

);

221+

expect(params.onAgentEvent).toHaveBeenCalledWith(

222+

expect.objectContaining({

223+

stream: "approval",

224+

data: expect.objectContaining({ command: "echo safe cod.exe hidden done" }),

225+

}),

226+

);

227+

});

228+229+

it("marks oversized unsafe command previews as omitted", async () => {

230+

const params = createParams();

231+

mockCallGatewayTool.mockResolvedValueOnce({

232+

id: "plugin:approval-omitted-command",

233+

decision: "allow-once",

234+

});

235+

const esc = "\u001b";

236+

const oversizedPrefix = `${esc}]8;;https://example.com${esc}\\`.repeat(300);

237+238+

await handleCodexAppServerApprovalRequest({

239+

method: "item/commandExecution/requestApproval",

240+

requestParams: {

241+

threadId: "thread-1",

242+

turnId: "turn-1",

243+

itemId: "cmd-omitted",

244+

command: [oversizedPrefix, "TAIL"],

245+

},

246+

paramsForRun: params,

247+

threadId: "thread-1",

248+

turnId: "turn-1",

249+

});

250+251+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

252+

expect(requestPayload).toEqual(

253+

expect.objectContaining({

254+

description:

255+

"Command: [preview truncated or unsafe content omitted]\nSession: agent:main:session-1",

256+

}),

257+

);

258+

expect(params.onAgentEvent).toHaveBeenCalledWith(

259+

expect.objectContaining({

260+

stream: "approval",

261+

data: expect.objectContaining({

262+

commandPreviewOmitted: true,

263+

}),

264+

}),

265+

);

266+

});

267+268+

it("marks clipped command previews even when a safe prefix remains", async () => {

269+

const params = createParams();

270+

mockCallGatewayTool.mockResolvedValueOnce({

271+

id: "plugin:approval-clipped-command",

272+

decision: "allow-once",

273+

});

274+275+

await handleCodexAppServerApprovalRequest({

276+

method: "item/commandExecution/requestApproval",

277+

requestParams: {

278+

threadId: "thread-1",

279+

turnId: "turn-1",

280+

itemId: "cmd-clipped",

281+

command: `${"a".repeat(5000)} tail`,

282+

},

283+

paramsForRun: params,

284+

threadId: "thread-1",

285+

turnId: "turn-1",

286+

});

287+288+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

289+

const description = (requestPayload as { description: string }).description;

290+

expect(description).toContain("[preview truncated or unsafe content omitted]");

291+

expect(params.onAgentEvent).toHaveBeenCalledWith(

292+

expect.objectContaining({

293+

stream: "approval",

294+

data: expect.objectContaining({

295+

commandPreviewOmitted: true,

296+

}),

297+

}),

298+

);

299+

});

300+122301

it("fails closed when no approval route is available", async () => {

123302

const params = createParams();

124303

mockCallGatewayTool.mockResolvedValueOnce({

@@ -149,6 +328,43 @@ describe("Codex app-server approval bridge", () => {

149328

);

150329

});

151330331+

it("sanitizes reason previews before forwarding approval text and events", async () => {

332+

const params = createParams();

333+

mockCallGatewayTool.mockResolvedValueOnce({

334+

id: "plugin:approval-sanitized-reason",

335+

decision: null,

336+

});

337+338+

await handleCodexAppServerApprovalRequest({

339+

method: "item/fileChange/requestApproval",

340+

requestParams: {

341+

threadId: "thread-1",

342+

turnId: "turn-1",

343+

itemId: "patch-sanitized",

344+

reason: "needs write access\nfor \u001b[31m/tmp\u001b[0m\tplease",

345+

},

346+

paramsForRun: params,

347+

threadId: "thread-1",

348+

turnId: "turn-1",

349+

});

350+351+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

352+

expect(requestPayload).toEqual(

353+

expect.objectContaining({

354+

description: "Reason: needs write access for /tmp please\nSession: agent:main:session-1",

355+

}),

356+

);

357+

expect(params.onAgentEvent).toHaveBeenCalledWith(

358+

expect.objectContaining({

359+

stream: "approval",

360+

data: expect.objectContaining({

361+

status: "unavailable",

362+

reason: "needs write access for /tmp please",

363+

}),

364+

}),

365+

);

366+

});

367+152368

it("fails closed for unsupported native approval methods without requesting plugin approval", async () => {

153369

const params = createParams();

154370

@@ -277,6 +493,39 @@ describe("Codex app-server approval bridge", () => {

277493

expect(description).toContain("High-risk targets:");

278494

});

279495496+

it("strips terminal and invisible controls from permission descriptions", async () => {

497+

const params = createParams();

498+

mockCallGatewayTool.mockResolvedValueOnce({

499+

id: "plugin:approval-permission-controls",

500+

decision: "allow-once",

501+

});

502+503+

await handleCodexAppServerApprovalRequest({

504+

method: "item/permissions/requestApproval",

505+

requestParams: {

506+

threadId: "thread-1",

507+

turnId: "turn-1",

508+

itemId: "perm-controls",

509+

permissions: {

510+

network: { allowHosts: ["exa\u009b31mmple.com", "safe\u202e.example.com"] },

511+

fileSystem: { roots: ["/tmp/\u001b[31mproject\u001b[0m"] },

512+

},

513+

},

514+

paramsForRun: params,

515+

threadId: "thread-1",

516+

turnId: "turn-1",

517+

});

518+519+

const [, , requestPayload] = mockCallGatewayTool.mock.calls[0] ?? [];

520+

const description = (requestPayload as { description: string }).description;

521+

expect(description).toContain("example.com");

522+

expect(description).toContain("safe .example.com");

523+

expect(description).toContain("/tmp/project");

524+

expect(description).not.toContain("\u009b");

525+

expect(description).not.toContain("\u202e");

526+

expect(description).not.toContain("\u001b");

527+

});

528+280529

it("ignores approval requests that are missing explicit thread or turn ids", async () => {

281530

const params = createParams();

282531