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

推荐订阅源

小众软件
小众软件
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
J
Java Code Geeks
A
About on SuperTechFans
F
Fortinet All Blogs
B
Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
博客园_首页
博客园 - 叶小钗
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
云风的 BLOG
云风的 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(diagnostics): preserve plugin security identities · o...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -978,9 +978,9 @@ describe("diagnostics-otel service", () => {

978978

scopes: ["operator.read", "operator.approvals"],

979979

},

980980

target: {

981-

kind: "tool",

982-

name: "browser",

983-

owner: "browser-tools",

981+

kind: "plugin",

982+

name: "@acme/security-event-plugin",

983+

owner: "plugin-installer",

984984

},

985985

policy: {

986986

id: "tools.exec",

@@ -1021,9 +1021,9 @@ describe("diagnostics-otel service", () => {

10211021

"openclaw.security.actor.id_hash": "agent-hash-1",

10221022

"openclaw.security.actor.role": "operator",

10231023

"openclaw.security.actor.scopes": "operator.read,operator.approvals",

1024-

"openclaw.security.target.kind": "tool",

1025-

"openclaw.security.target.name": "browser",

1026-

"openclaw.security.target.owner": "browser-tools",

1024+

"openclaw.security.target.kind": "plugin",

1025+

"openclaw.security.target.name": "@acme/security-event-plugin",

1026+

"openclaw.security.target.owner": "plugin-installer",

10271027

"openclaw.security.policy.id": "tools.exec",

10281028

"openclaw.security.policy.decision": "deny",

10291029

"openclaw.security.policy.reason": "allowlist.miss",

Original file line numberDiff line numberDiff line change

@@ -67,6 +67,7 @@ const DROPPED_OTEL_ATTRIBUTE_KEYS = new Set([

6767

"openclaw.trace_id",

6868

]);

6969

const LOW_CARDINALITY_VALUE_RE = /^[A-Za-z0-9_.:-]{1,120}$/u;

70+

const SECURITY_TARGET_NAME_VALUE_RE = /^[A-Za-z0-9@/_.:-]{1,256}$/u;

7071

const MAX_OTEL_CONTENT_ATTRIBUTE_CHARS = 128 * 1024;

7172

const MAX_OTEL_CONTENT_ARRAY_ITEMS = 200;

7273

const MAX_OTEL_LOG_BODY_CHARS = 4 * 1024;

@@ -319,6 +320,18 @@ function lowCardinalityAttr(value: string | undefined, fallback = "unknown"): st

319320

return LOW_CARDINALITY_VALUE_RE.test(redacted) ? redacted : fallback;

320321

}

321322
323+

function securityTargetNameAttr(value: string | undefined, fallback = "unknown"): string {

324+

if (!value) {

325+

return fallback;

326+

}

327+

const redacted = redactSensitiveText(value.trim());

328+

const redactedLower = redacted.toLowerCase();

329+

if (redactedLower.startsWith("agent:") || redactedLower.includes(":agent:")) {

330+

return fallback;

331+

}

332+

return SECURITY_TARGET_NAME_VALUE_RE.test(redacted) ? redacted : fallback;

333+

}

334+
322335

function lowCardinalityQueueLaneAttr(value: string | undefined, fallback = "unknown"): string {

323336

if (!value) {

324337

return fallback;

@@ -1124,7 +1137,7 @@ function assignOtelSecurityAttributes(

11241137

assignOtelLogAttribute(

11251138

attributes,

11261139

"openclaw.security.target.name",

1127-

lowCardinalityAttr(evt.target.name),

1140+

securityTargetNameAttr(evt.target.name),

11281141

);

11291142

}

11301143

if (evt.target.owner) {

Original file line numberDiff line numberDiff line change

@@ -2496,25 +2496,32 @@ describe("installPluginFromNpmSpec", () => {

24962496

const npmDir = path.join(root, "npm");

24972497

const extensionsDir = path.join(root, "extensions");

24982498

const { scriptPath, logPath } = writeBlockingInstallPolicyScript(root);

2499-

mockNpmViewMetadata({ name: "@acme/policy-preflight-plugin" });

2499+

const packageName = "@acme/policy-preflight-plugin";

2500+

mockNpmViewMetadata({ name: packageName });

2501+

const captured = captureSecurityEvents();

25002502
2501-

const result = await installPluginFromNpmSpec({

2502-

spec: "@acme/policy-preflight-plugin@1.0.0",

2503-

extensionsDir,

2504-

npmDir,

2505-

config: configWithInstallPolicy(scriptPath, logPath),

2506-

});

2503+

let result: Awaited<ReturnType<typeof installPluginFromNpmSpec>>;

2504+

try {

2505+

result = await installPluginFromNpmSpec({

2506+

spec: `${packageName}@1.0.0`,

2507+

extensionsDir,

2508+

npmDir,

2509+

config: configWithInstallPolicy(scriptPath, logPath),

2510+

});

2511+

} finally {

2512+

captured.stop();

2513+

}

25072514
2508-

expect(result.ok).toBe(false);

2509-

if (!result.ok) {

2510-

expect(result.code, result.error).toBe(PLUGIN_INSTALL_ERROR_CODE.SECURITY_SCAN_BLOCKED);

2511-

expect(result.error).toContain("npm installs are disabled by policy");

2515+

expect(result!.ok).toBe(false);

2516+

if (!result!.ok) {

2517+

expect(result!.code, result!.error).toBe(PLUGIN_INSTALL_ERROR_CODE.SECURITY_SCAN_BLOCKED);

2518+

expect(result!.error).toContain("npm installs are disabled by policy");

25122519

}

25132520

expect(vi.mocked(runCommandWithTimeout)).toHaveBeenCalledTimes(1);

25142521

expect(vi.mocked(runCommandWithTimeout).mock.calls[0]?.[0]).toEqual([

25152522

"npm",

25162523

"view",

2517-

"@acme/policy-preflight-plugin@1.0.0",

2524+

`${packageName}@1.0.0`,

25182525

"name",

25192526

"version",

25202527

"dist.integrity",

@@ -2531,6 +2538,16 @@ describe("installPluginFromNpmSpec", () => {

25312538

expect(requests[0]?.sourcePathKind).toBe("file");

25322539

expect(path.basename(requests[0]?.sourcePath ?? "")).toBe("npm-package-metadata.json");

25332540

expect(requests[0]?.plugin?.contentType).toBe("package");

2541+

expect(captured.events).toHaveLength(1);

2542+

expect(captured.events[0]).toMatchObject({

2543+

action: "plugin.audit.failed",

2544+

outcome: "denied",

2545+

target: { kind: "plugin", name: packageName },

2546+

attributes: {

2547+

source_family: "npm",

2548+

mode: "install",

2549+

},

2550+

});

25342551

});

25352552
25362553

it("reports effective install mode to policy when requested npm update has no installed target", async () => {

Original file line numberDiff line numberDiff line change

@@ -1223,6 +1223,9 @@ async function installPluginFromManagedNpmRoot(

12231223

if (!params.skipPolicyPreflight) {

12241224

const preflightPolicyResult = await runInstallSourceScan({

12251225

subject: `Plugin "${expectedPluginId ?? params.packageName}"`,

1226+

pluginId: expectedPluginId ?? params.packageName,

1227+

mode: effectiveMode,

1228+

sourceFamily: "npm",

12261229

scan: async () =>

12271230

await preflightPluginNpmInstallPolicy({

12281231

config: params.config,

@@ -2355,6 +2358,18 @@ async function scanAndLinkInstalledPackage(params: {

23552358

}): Promise<Extract<InstallPluginResult, { ok: false }> | null> {

23562359

const scanResult = await runInstallSourceScan({

23572360

subject: `Plugin "${params.pluginId}"`,

2361+

pluginId: params.pluginId,

2362+

mode: params.mode,

2363+

sourceFamily:

2364+

params.requestKind === "plugin-npm"

2365+

? "npm"

2366+

: params.requestKind === "plugin-archive"

2367+

? "archive"

2368+

: params.requestKind === "plugin-dir"

2369+

? "directory"

2370+

: params.requestKind === "plugin-file"

2371+

? "file"

2372+

: "installed-package",

23582373

scan: async () =>

23592374

await params.runtime.scanInstalledPackageDependencyTree({

23602375

...(params.additionalDependencyPackageDirs

@@ -2926,6 +2941,9 @@ export async function installPluginFromNpmSpec(

29262941

);

29272942

const preflightPolicyResult = await runInstallSourceScan({

29282943

subject: `Plugin "${expectedPluginId ?? parsedSpec.name}"`,

2944+

pluginId: expectedPluginId ?? parsedSpec.name,

2945+

mode: effectiveMode,

2946+

sourceFamily: "npm",

29292947

scan: async () =>

29302948

await preflightPluginNpmInstallPolicy({

29312949

config: params.config,