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

推荐订阅源

Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
量子位
美团技术团队
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
月光博客
月光博客

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(exec): bind approval trust to realpaths (#82825) · op...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -14,11 +14,14 @@ import {

1414

analyzeShellCommand,

1515

isWindowsPlatform,

1616

matchAllowlist,

17+

resolveExecutableTrustPath,

1718

resolveExecutionTargetCandidatePath,

1819

resolveExecutionTargetResolution,

20+

resolveExecutionTargetTrustPath,

1921

resolveCommandResolutionFromArgv,

2022

resolvePolicyTargetCandidatePath,

2123

resolvePolicyTargetResolution,

24+

resolvePolicyTargetTrustPath,

2225

splitCommandChain,

2326

splitCommandChainWithOperators,

2427

type ExecCommandAnalysis,

@@ -96,13 +99,14 @@ export function isSafeBinUsage(params: {

9699

if (!matchesSafeBin) {

97100

return false;

98101

}

99-

if (!resolution?.resolvedPath) {

102+

const trustPath = resolveExecutableTrustPath(resolution);

103+

if (!trustPath) {

100104

return false;

101105

}

102106

const isTrustedPath = params.isTrustedSafeBinPathFn ?? isTrustedSafeBinPath;

103107

if (

104108

!isTrustedPath({

105-

resolvedPath: resolution.resolvedPath,

109+

resolvedPath: trustPath,

106110

trustedDirs: params.trustedSafeBinDirs,

107111

})

108112

) {

@@ -212,15 +216,16 @@ function isSkillAutoAllowedSegment(params: {

212216

}

213217

const resolution = params.segment.resolution;

214218

const execution = resolveExecutionTargetResolution(resolution);

215-

if (!execution?.resolvedPath) {

219+

const trustPath = resolveExecutionTargetTrustPath(resolution);

220+

if (!execution?.resolvedPath || !trustPath) {

216221

return false;

217222

}

218223

const rawExecutable = execution.rawExecutable?.trim() ?? "";

219224

if (!rawExecutable || isPathScopedExecutableToken(rawExecutable)) {

220225

return false;

221226

}

222227

const executableName = normalizeSkillBinName(execution.executableName);

223-

const resolvedPath = normalizeSkillBinResolvedPath(execution.resolvedPath);

228+

const resolvedPath = normalizeSkillBinResolvedPath(trustPath);

224229

if (!executableName || !resolvedPath) {

225230

return false;

226231

}

@@ -439,6 +444,7 @@ function executableResolutionsReferToSameTarget(

439444

return (

440445

left.rawExecutable === right.rawExecutable &&

441446

left.resolvedPath === right.resolvedPath &&

447+

left.resolvedRealPath === right.resolvedRealPath &&

442448

left.executableName === right.executableName

443449

);

444450

}

@@ -534,9 +540,10 @@ function resolveSegmentAllowlistMatch(params: {

534540

params.segment.resolution,

535541

params.context.cwd,

536542

);

543+

const trustPath = resolvePolicyTargetTrustPath(params.segment.resolution, params.context.cwd);

537544

const candidateResolution =

538545

candidatePath && executableResolution

539-

? { ...executableResolution, resolvedPath: candidatePath }

546+

? { ...executableResolution, resolvedPath: candidatePath, resolvedRealPath: trustPath }

540547

: executableResolution;

541548

const inlineCommand = extractBindableShellWrapperInlineCommand(allowlistSegment.argv);

542549

const powerShellFileScriptArgv = resolvePowerShellFileScriptArgv({

@@ -573,6 +580,7 @@ function resolveSegmentAllowlistMatch(params: {

573580

{

574581

rawExecutable: shellPositionalArgvCandidatePath,

575582

resolvedPath: shellPositionalArgvCandidatePath,

583+

resolvedRealPath: resolveCandidateTrustPath(shellPositionalArgvCandidatePath),

576584

executableName: path.basename(shellPositionalArgvCandidatePath),

577585

},

578586

undefined,

@@ -602,6 +610,7 @@ function resolveSegmentAllowlistMatch(params: {

602610

{

603611

rawExecutable: shellScriptCandidatePath,

604612

resolvedPath: shellScriptCandidatePath,

613+

resolvedRealPath: resolveCandidateTrustPath(shellScriptCandidatePath),

605614

executableName: path.basename(shellScriptCandidatePath),

606615

},

607616

shellScriptArgv,

@@ -1096,6 +1105,17 @@ function addAllowAlwaysPattern(

10961105

}

10971106

}

109811071108+

function resolveCandidateTrustPath(candidatePath: string | undefined): string | undefined {

1109+

if (!candidatePath) {

1110+

return undefined;

1111+

}

1112+

return resolveExecutableTrustPath({

1113+

rawExecutable: candidatePath,

1114+

resolvedPath: candidatePath,

1115+

executableName: path.basename(candidatePath),

1116+

});

1117+

}

1118+10991119

function collectAllowAlwaysPatterns(params: {

11001120

segment: ExecCommandSegment;

11011121

cwd?: string;

@@ -1123,7 +1143,7 @@ function collectAllowAlwaysPatterns(params: {

11231143

resolution: resolveCommandResolutionFromArgv(trustPlan.argv, params.cwd, params.env),

11241144

};

112511451126-

const candidatePath = resolveExecutionTargetCandidatePath(segment.resolution, params.cwd);

1146+

const candidatePath = resolveExecutionTargetTrustPath(segment.resolution, params.cwd);

11271147

if (!candidatePath) {

11281148

return;

11291149

}

@@ -1152,7 +1172,10 @@ function collectAllowAlwaysPatterns(params: {

11521172

})

11531173

: undefined;

11541174

if (positionalArgvPath) {

1155-

addAllowAlwaysPattern(params.out, positionalArgvPath);

1175+

addAllowAlwaysPattern(

1176+

params.out,

1177+

resolveCandidateTrustPath(positionalArgvPath) ?? positionalArgvPath,

1178+

);

11561179

return;

11571180

}

11581181

if (!inlineCommand) {

@@ -1163,13 +1186,14 @@ function collectAllowAlwaysPatterns(params: {

11631186

cwd: params.cwd,

11641187

});

11651188

if (scriptPath) {

1189+

const scriptTrustPath = resolveCandidateTrustPath(scriptPath) ?? scriptPath;

11661190

const argPattern = buildScriptArgPatternFromArgv(

11671191

powerShellFileScriptArgv ?? params.segment.argv,

11681192

scriptPath,

11691193

params.cwd,

11701194

params.platform,

11711195

);

1172-

addAllowAlwaysPattern(params.out, scriptPath, argPattern);

1196+

addAllowAlwaysPattern(params.out, scriptTrustPath, argPattern);

11731197

}

11741198

return;

11751199

}