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

推荐订阅源

IT之家
IT之家
博客园_首页
S
SegmentFault 最新的问题
罗磊的独立博客
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
D
Docker
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
V
V2EX
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
腾讯CDC
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
Vercel News
Vercel News
H
Help Net Security
博客园 - Franky
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏

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(auto-reply): redact secrets in config show output (#8...
jason-allen- · 2026-05-31 · via Recent Commits to openclaw:main
11

import { beforeEach, describe, expect, it, vi } from "vitest";

22

import { isCommandFlagEnabled } from "../../config/commands.js";

33

import type { OpenClawConfig } from "../../config/config.js";

4+

import { REDACTED_SENTINEL } from "../../config/redact-snapshot.js";

45

import type { MsgContext } from "../templating.js";

56

import { handleBashChatCommand } from "./bash-command.js";

67

import { requireGatewayClientScope } from "./command-gates.js";

@@ -129,6 +130,14 @@ vi.mock("../../config/runtime-overrides.js", () => ({

129130

unsetConfigOverride: vi.fn(() => ({ ok: true, removed: true })),

130131

}));

131132133+

vi.mock("../../config/runtime-schema.js", async () => {

134+

const actual =

135+

await vi.importActual<typeof import("../../config/schema.js")>("../../config/schema.js");

136+

return {

137+

loadGatewayRuntimeConfigSchema: () => actual.buildConfigSchema(),

138+

};

139+

});

140+132141

vi.mock("../../utils/message-channel.js", () => ({

133142

isInternalMessageChannel: isInternalMessageChannelMock,

134143

}));

@@ -354,6 +363,169 @@ describe("command gating", () => {

354363

expect(debugResult?.reply?.text).toContain("Debug overrides");

355364

});

356365366+

it("redacts secret-shaped fields from full /config show replies", async () => {

367+

readConfigFileSnapshotMock.mockResolvedValueOnce({

368+

valid: true,

369+

parsed: {

370+

gateway: {

371+

auth: {

372+

mode: "token",

373+

token: "OPENCLAW_CONFIG_SHOW_CANARY_TOKEN_65623",

374+

password: "OPENCLAW_CONFIG_SHOW_CANARY_PASSWORD_65623",

375+

},

376+

bind: "127.0.0.1",

377+

port: 3210,

378+

},

379+

models: {

380+

providers: {

381+

openai: {

382+

apiKey: "OPENCLAW_CONFIG_SHOW_CANARY_API_KEY_65623",

383+

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

384+

models: [{ id: "gpt-test", name: "gpt-test" }],

385+

},

386+

},

387+

},

388+

browser: {

389+

cdpUrl:

390+

"wss://chrome.example.test/devtools?token=OPENCLAW_CONFIG_SHOW_CANARY_CDP_TOKEN_65623&apiKey=OPENCLAW_CONFIG_SHOW_CANARY_CDP_API_KEY_65623",

391+

profiles: {

392+

local: {

393+

cdpUrl: "ws://localhost:9222",

394+

},

395+

remote: {

396+

cdpUrl:

397+

"wss://chrome.remote.example.test/devtools?apiKey=OPENCLAW_CONFIG_SHOW_CANARY_CDP_PROFILE_API_KEY_65623",

398+

},

399+

},

400+

},

401+

talk: {

402+

providers: {

403+

openai: {

404+

apiKey: "OPENCLAW_CONFIG_SHOW_CANARY_API_KEY_65623",

405+

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

406+

model: "gpt-test",

407+

},

408+

},

409+

},

410+

channels: {

411+

telegram: {

412+

botToken: "1234567890TELEGRAM_BOT_TOKEN",

413+

enabled: true,

414+

},

415+

slack: {

416+

token: {

417+

source: "env",

418+

provider: "default",

419+

id: "SLACK_BOT_TOKEN",

420+

},

421+

},

422+

},

423+

},

424+

});

425+

const params = buildParams("/config show", {

426+

commands: { config: true, text: true },

427+

channels: { whatsapp: { allowFrom: ["*"] } },

428+

} as OpenClawConfig);

429+

params.command.senderIsOwner = true;

430+431+

const result = await handleConfigCommand(params, true);

432+

const output = result?.reply?.text ?? "";

433+434+

expect(output).toContain("gateway");

435+

expect(output).toContain("token");

436+

expect(output).toContain("password");

437+

expect(output).toContain("apiKey");

438+

expect(output).toContain("browser");

439+

expect(output).toContain("cdpUrl");

440+

expect(output).toContain(REDACTED_SENTINEL);

441+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_TOKEN_65623");

442+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_PASSWORD_65623");

443+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_API_KEY_65623");

444+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_CDP_TOKEN_65623");

445+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_CDP_API_KEY_65623");

446+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_CDP_PROFILE_API_KEY_65623");

447+

expect(output).toContain('"mode": "token"');

448+

expect(output).toContain('"bind": "127.0.0.1"');

449+

expect(output).toContain('"port": 3210');

450+

expect(output).toContain('"enabled": true');

451+

expect(output).toContain('"model": "gpt-test"');

452+

expect(output).toContain('"baseUrl": "https://api.example.test"');

453+

expect(output).toContain('"cdpUrl": "ws://localhost:9222"');

454+

});

455+456+

it("redacts secret-shaped values from path-specific /config show replies", async () => {

457+

readConfigFileSnapshotMock.mockResolvedValueOnce({

458+

valid: true,

459+

parsed: {

460+

gateway: {

461+

auth: {

462+

mode: "token",

463+

token: "OPENCLAW_CONFIG_SHOW_CANARY_TOKEN_65623",

464+

},

465+

},

466+

},

467+

});

468+

const params = buildParams("/config show gateway.auth.token", {

469+

commands: { config: true, text: true },

470+

channels: { whatsapp: { allowFrom: ["*"] } },

471+

} as OpenClawConfig);

472+

params.command.senderIsOwner = true;

473+474+

const result = await handleConfigCommand(params, true);

475+

const output = result?.reply?.text ?? "";

476+477+

expect(output).toContain("Config gateway.auth.token");

478+

expect(output).toContain(REDACTED_SENTINEL);

479+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_TOKEN_65623");

480+

});

481+482+

it("redacts browser cdpUrl query secrets from path-specific /config show replies", async () => {

483+

readConfigFileSnapshotMock.mockResolvedValueOnce({

484+

valid: true,

485+

parsed: {

486+

browser: {

487+

cdpUrl:

488+

"wss://chrome.example.test/devtools?token=OPENCLAW_CONFIG_SHOW_CANARY_CDP_TOKEN_65623&apiKey=OPENCLAW_CONFIG_SHOW_CANARY_CDP_API_KEY_65623",

489+

},

490+

},

491+

});

492+

const params = buildParams("/config show browser.cdpUrl", {

493+

commands: { config: true, text: true },

494+

channels: { whatsapp: { allowFrom: ["*"] } },

495+

} as OpenClawConfig);

496+

params.command.senderIsOwner = true;

497+498+

const result = await handleConfigCommand(params, true);

499+

const output = result?.reply?.text ?? "";

500+501+

expect(output).toContain("Config browser.cdpUrl");

502+

expect(output).toContain(REDACTED_SENTINEL);

503+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_CDP_TOKEN_65623");

504+

expect(output).not.toContain("OPENCLAW_CONFIG_SHOW_CANARY_CDP_API_KEY_65623");

505+

});

506+507+

it("redacts secret-shaped values from /config set acknowledgements", async () => {

508+

readConfigFileSnapshotMock.mockResolvedValue({

509+

valid: true,

510+

parsed: { gateway: { auth: { mode: "token" } } },

511+

});

512+

const params = buildParams(

513+

'/config set gateway.auth.token="OPENCLAW_CONFIG_SET_CANARY_TOKEN_65623"',

514+

{

515+

commands: { config: true, text: true },

516+

channels: { whatsapp: { allowFrom: ["*"] } },

517+

} as OpenClawConfig,

518+

);

519+

params.command.senderIsOwner = true;

520+521+

const result = await handleConfigCommand(params, true);

522+

const output = result?.reply?.text ?? "";

523+524+

expect(output).toContain("Config updated: gateway.auth.token=");

525+

expect(output).toContain(REDACTED_SENTINEL);

526+

expect(output).not.toContain("OPENCLAW_CONFIG_SET_CANARY_TOKEN_65623");

527+

});

528+357529

it("returns explicit unauthorized replies for native privileged commands", async () => {

358530

const configParams = buildParams("/config show", {

359531

commands: { config: true, text: true },