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

推荐订阅源

有赞技术团队
有赞技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
Y
Y Combinator Blog
博客园 - 【当耐特】
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
量子位
C
Check Point Blog
F
Fortinet All Blogs
罗磊的独立博客
Last Week in AI
Last Week in AI
GbyAI
GbyAI
L
LangChain 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
Harden agent diagnostic redaction · openclaw/openclaw@d8e...
joshavant · 2026-06-25 · via Recent Commits to openclaw:main

@@ -6,6 +6,12 @@ import { resolveUserPath } from "../utils.js";

66

import { createCacheTrace } from "./cache-trace.js";

7788

describe("createCacheTrace", () => {

9+

const bareAnthropicKey = "sk-ant-api03-AbCdEfGhIjKlMnOpQrStUvWx"; // pragma: allowlist secret

10+

const bareAwsKey = "AKIAIOSFODNN7EXAMPLE"; // pragma: allowlist secret

11+

const bareGithubKey = "ghp_AbCdEfGhIjKlMnOpQrStUvWxYz1234567890"; // pragma: allowlist secret

12+

const bareGoogleKey = "AIzaSyA1bC2dE3fG4hI5jK6lM7nO8pQrStUvW"; // pragma: allowlist secret

13+

const barePerplexityKey = "pplx-AbCdEfGhIjKlMnOpQrStUvWx"; // pragma: allowlist secret

14+915

function createMemoryTraceForTest() {

1016

const lines: string[] = [];

1117

// In-memory writer keeps cache trace assertions deterministic without

@@ -179,15 +185,21 @@ describe("createCacheTrace", () => {

179185180186

trace?.recordStage("stream:context", {

181187

system: {

182-

provider: { apiKey: "sk-system-secret", baseUrl: "https://api.example.com" },

188+

provider: {

189+

apiKey: "sk-system-secret",

190+

baseUrl: "https://api.example.com",

191+

diagnosticText: bareAwsKey,

192+

},

183193

},

184194

model: {

185195

id: "test-model",

186196

apiKey: "sk-model-secret",

187197

tokenCount: 8192,

198+

diagnosticText: bareGoogleKey,

188199

},

189200

options: {

190201

apiKey: "sk-options-secret",

202+

diagnosticText: bareGithubKey,

191203

nested: {

192204

password: "super-secret-password",

193205

safe: "keep-me",

@@ -204,6 +216,10 @@ describe("createCacheTrace", () => {

204216

label: "preserve-me",

205217

},

206218

content: [

219+

{

220+

type: "text",

221+

text: barePerplexityKey,

222+

},

207223

{

208224

type: "image",

209225

source: { type: "base64", media_type: "image/jpeg", data: "U0VDUkVU" },

@@ -214,16 +230,25 @@ describe("createCacheTrace", () => {

214230

});

215231216232

const event = JSON.parse(lines[0]?.trim() ?? "{}") as Record<string, unknown>;

217-

expect(event.system).toEqual({

218-

provider: {

219-

baseUrl: "https://api.example.com",

220-

},

233+

const systemProvider =

234+

(event.system as { provider?: Record<string, unknown> } | undefined)?.provider ?? {};

235+

expect(systemProvider).toMatchObject({

236+

baseUrl: "https://api.example.com",

221237

});

238+

expect(systemProvider.diagnosticText).toBeTypeOf("string");

239+

expect(systemProvider.diagnosticText).not.toBe(bareAwsKey);

240+

expect(systemProvider.diagnosticText).not.toContain(bareAwsKey);

222241

expect(event.model).toEqual({

223242

id: "test-model",

224243

tokenCount: 8192,

244+

diagnosticText: expect.any(String),

225245

});

246+

expect((event.model as { diagnosticText?: string }).diagnosticText).not.toBe(bareGoogleKey);

247+

expect((event.model as { diagnosticText?: string }).diagnosticText).not.toContain(

248+

bareGoogleKey,

249+

);

226250

expect(event.options).toEqual({

251+

diagnosticText: expect.any(String),

227252

nested: {

228253

safe: "keep-me",

229254

tokenCount: 42,

@@ -238,6 +263,10 @@ describe("createCacheTrace", () => {

238263

},

239264

],

240265

});

266+

expect((event.options as { diagnosticText?: string }).diagnosticText).not.toBe(bareGithubKey);

267+

expect((event.options as { diagnosticText?: string }).diagnosticText).not.toContain(

268+

bareGithubKey,

269+

);

241270242271

const optionsImages = (

243272

((event.options as { images?: unknown[] } | undefined)?.images ?? []) as Array<

@@ -257,11 +286,44 @@ describe("createCacheTrace", () => {

257286

expect(firstMessage?.metadata).toEqual({

258287

label: "preserve-me",

259288

});

260-

const source = (((firstMessage?.content as Array<Record<string, unknown>> | undefined) ?? [])[0]

261-

?.source ?? {}) as Record<string, unknown>;

289+

const content = (firstMessage?.content as Array<Record<string, unknown>> | undefined) ?? [];

290+

expect(content[0]).toEqual({

291+

type: "text",

292+

text: expect.any(String),

293+

});

294+

expect(content[0]?.text).not.toBe(barePerplexityKey);

295+

expect(content[0]?.text).not.toContain(barePerplexityKey);

296+

const source = (content[1]?.source ?? {}) as Record<string, unknown>;

262297

expect(source.data).toBe("<redacted>");

263298

expect(source.bytes).toBe(6);

264299

expect(source.sha256).toBe(crypto.createHash("sha256").update("U0VDUkVU").digest("hex"));

300+

const serialized = JSON.stringify(event);

301+

expect(serialized).not.toContain(bareAwsKey);

302+

expect(serialized).not.toContain(bareGoogleKey);

303+

expect(serialized).not.toContain(bareGithubKey);

304+

expect(serialized).not.toContain(barePerplexityKey);

305+

});

306+307+

it("redacts bare vendor keys from cache-trace prompt, note, and error fields", () => {

308+

const { lines, trace } = createMemoryTraceForTest();

309+310+

trace?.recordStage("prompt:before", {

311+

prompt: `prompt ${bareAnthropicKey}`,

312+

note: `note ${bareGithubKey}`,

313+

error: `error ${bareGoogleKey}`,

314+

});

315+316+

const event = JSON.parse(lines[0]?.trim() ?? "{}") as Record<string, unknown>;

317+

expect(event.prompt).toBeTypeOf("string");

318+

expect(event.note).toBeTypeOf("string");

319+

expect(event.error).toBeTypeOf("string");

320+

expect(event.prompt).not.toBe(`prompt ${bareAnthropicKey}`);

321+

expect(event.note).not.toBe(`note ${bareGithubKey}`);

322+

expect(event.error).not.toBe(`error ${bareGoogleKey}`);

323+

const serialized = JSON.stringify(event);

324+

expect(serialized).not.toContain(bareAnthropicKey);

325+

expect(serialized).not.toContain(bareGithubKey);

326+

expect(serialized).not.toContain(bareGoogleKey);

265327

});

266328267329

it("handles circular references in messages without stack overflow", () => {