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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
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 test: merge chat context notice checks · openclaw/openclaw@5c2f4af 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
fix: land node-host approval binding for native binaries ...
tmimmanuel · 2026-04-16 · via Recent Commits to openclaw:main
11

import fs from "node:fs";

22

import os from "node:os";

33

import path from "node:path";

4-

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

4+

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

55

import { formatExecCommand } from "../infra/system-run-command.js";

66

import {

77

buildSystemRunApprovalPlan,

@@ -122,6 +122,43 @@ function withFakeRuntimeBins<T>(params: {

122122

}

123123

}

124124125+

function resolveNativeBinaryFixturePath(): string {

126+

for (const candidate of ["/bin/ls", "/usr/bin/ls", "/bin/echo", "/usr/bin/printf"]) {

127+

try {

128+

if (fs.statSync(candidate).isFile()) {

129+

return candidate;

130+

}

131+

} catch {

132+

continue;

133+

}

134+

}

135+

throw new Error("expected a native binary fixture path");

136+

}

137+138+

function expectShellPayloadApprovalDenied(params: {

139+

tmpPrefix: string;

140+

fileName: string;

141+

body: string;

142+

}) {

143+

if (process.platform === "win32") {

144+

return;

145+

}

146+

const tmp = fs.mkdtempSync(path.join(os.tmpdir(), params.tmpPrefix));

147+

try {

148+

const scriptPath = path.join(tmp, params.fileName);

149+

fs.writeFileSync(scriptPath, params.body);

150+

fs.chmodSync(scriptPath, 0o755);

151+

const prepared = buildSystemRunApprovalPlan({

152+

command: ["/bin/sh", "-lc", scriptPath],

153+

rawCommand: scriptPath,

154+

cwd: tmp,

155+

});

156+

expect(prepared).toEqual(DENIED_RUNTIME_APPROVAL);

157+

} finally {

158+

fs.rmSync(tmp, { recursive: true, force: true });

159+

}

160+

}

161+125162

function expectMutableFileOperandApprovalPlan(fixture: ScriptOperandFixture, cwd: string) {

126163

const prepared = buildSystemRunApprovalPlan({

127164

command: fixture.command,

@@ -769,6 +806,162 @@ describe("hardenApprovedExecutionPaths", () => {

769806

);

770807

});

771808809+

it("allows shell payloads that invoke absolute-path native binaries", () => {

810+

if (process.platform === "win32") {

811+

return;

812+

}

813+

const binaryPath = resolveNativeBinaryFixturePath();

814+

const prepared = buildSystemRunApprovalPlan({

815+

command: ["/bin/sh", "-lc", binaryPath],

816+

rawCommand: binaryPath,

817+

cwd: process.cwd(),

818+

});

819+

expect(prepared.ok).toBe(true);

820+

if (!prepared.ok) {

821+

throw new Error("unreachable");

822+

}

823+

expect(prepared.plan.mutableFileOperand).toBeUndefined();

824+

});

825+826+

it("keeps fail-closed behavior for relative native-binary shell payloads", () => {

827+

if (process.platform === "win32") {

828+

return;

829+

}

830+

const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-shell-relative-binary-binding-"));

831+

try {

832+

const binaryPath = resolveNativeBinaryFixturePath();

833+

const relativeBinaryPath = path.join(tmp, "tool");

834+

fs.copyFileSync(binaryPath, relativeBinaryPath);

835+

fs.chmodSync(relativeBinaryPath, 0o755);

836+

const prepared = buildSystemRunApprovalPlan({

837+

command: ["/bin/sh", "-lc", "./tool"],

838+

rawCommand: "./tool",

839+

cwd: tmp,

840+

});

841+

expect(prepared).toEqual(DENIED_RUNTIME_APPROVAL);

842+

} finally {

843+

fs.rmSync(tmp, { recursive: true, force: true });

844+

}

845+

});

846+847+

it("keeps fail-closed behavior for writable absolute native-binary shell payloads", () => {

848+

if (process.platform === "win32") {

849+

return;

850+

}

851+

const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-shell-absolute-binary-binding-"));

852+

try {

853+

const binaryPath = resolveNativeBinaryFixturePath();

854+

const copiedBinaryPath = path.join(tmp, "tool");

855+

fs.copyFileSync(binaryPath, copiedBinaryPath);

856+

fs.chmodSync(copiedBinaryPath, 0o755);

857+

const prepared = buildSystemRunApprovalPlan({

858+

command: ["/bin/sh", "-lc", copiedBinaryPath],

859+

rawCommand: copiedBinaryPath,

860+

cwd: tmp,

861+

});

862+

expect(prepared).toEqual(DENIED_RUNTIME_APPROVAL);

863+

} finally {

864+

fs.rmSync(tmp, { recursive: true, force: true });

865+

}

866+

});

867+868+

it("keeps fail-closed behavior for symlinked binaries with writable targets", () => {

869+

if (process.platform === "win32") {

870+

return;

871+

}

872+

const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-shell-symlink-binary-binding-"));

873+

const stableDir = path.join(tmp, "stable");

874+

const mutableDir = path.join(tmp, "mutable");

875+

try {

876+

const binaryPath = resolveNativeBinaryFixturePath();

877+

fs.mkdirSync(stableDir);

878+

fs.mkdirSync(mutableDir);

879+

const targetBinaryPath = path.join(mutableDir, "tool");

880+

const symlinkPath = path.join(stableDir, "tool");

881+

fs.copyFileSync(binaryPath, targetBinaryPath);

882+

fs.chmodSync(targetBinaryPath, 0o755);

883+

fs.symlinkSync(targetBinaryPath, symlinkPath);

884+

fs.chmodSync(stableDir, 0o555);

885+

const prepared = buildSystemRunApprovalPlan({

886+

command: ["/bin/sh", "-lc", symlinkPath],

887+

rawCommand: symlinkPath,

888+

cwd: tmp,

889+

});

890+

expect(prepared).toEqual(DENIED_RUNTIME_APPROVAL);

891+

} finally {

892+

fs.chmodSync(stableDir, 0o755);

893+

fs.rmSync(tmp, { recursive: true, force: true });

894+

}

895+

});

896+897+

it("keeps fail-closed behavior for shell payloads that invoke mutable script files", () => {

898+

expectShellPayloadApprovalDenied({

899+

tmpPrefix: "openclaw-shell-script-binding-",

900+

fileName: "run.sh",

901+

body: "#!/bin/sh\necho SAFE\n",

902+

});

903+

});

904+905+

it("keeps fail-closed behavior for empty shell payload files", () => {

906+

expectShellPayloadApprovalDenied({

907+

tmpPrefix: "openclaw-shell-empty-binding-",

908+

fileName: "empty",

909+

body: "",

910+

});

911+

});

912+913+

it("does not treat weak MZ text headers as native binaries", () => {

914+

expectShellPayloadApprovalDenied({

915+

tmpPrefix: "openclaw-shell-mz-text-binding-",

916+

fileName: "mz-script",

917+

body: "MZ not really a PE file\n",

918+

});

919+

});

920+921+

it("keeps fail-closed behavior for unknown NUL-bearing headers", () => {

922+

expectShellPayloadApprovalDenied({

923+

tmpPrefix: "openclaw-shell-nul-header-binding-",

924+

fileName: "nul-script",

925+

body: "SAFE\u0000maybe-binary\n",

926+

});

927+

});

928+929+

it("keeps fail-closed behavior when the shell payload probe stops seeing a file", () => {

930+

if (process.platform === "win32") {

931+

return;

932+

}

933+

const tmp = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-shell-race-binding-"));

934+

try {

935+

const scriptPath = path.join(tmp, "run.sh");

936+

fs.writeFileSync(scriptPath, "#!/bin/sh\necho SAFE\n");

937+

fs.chmodSync(scriptPath, 0o755);

938+

const realStatSync = fs.statSync;

939+

let targetStatCalls = 0;

940+

const statSyncSpy = vi.spyOn(fs, "statSync").mockImplementation((pathLike, options) => {

941+

const targetPath = typeof pathLike === "string" ? pathLike : pathLike.toString();

942+

if (targetPath === scriptPath) {

943+

targetStatCalls += 1;

944+

if (targetStatCalls === 2) {

945+

return realStatSync(tmp, options);

946+

}

947+

}

948+

return realStatSync(pathLike, options);

949+

});

950+

try {

951+

const prepared = buildSystemRunApprovalPlan({

952+

command: ["/bin/sh", "-lc", scriptPath],

953+

rawCommand: scriptPath,

954+

cwd: tmp,

955+

});

956+

expect(prepared).toEqual(DENIED_RUNTIME_APPROVAL);

957+

} finally {

958+

statSyncSpy.mockRestore();

959+

}

960+

} finally {

961+

fs.rmSync(tmp, { recursive: true, force: true });

962+

}

963+

});

964+772965

it.each(unsafeRuntimeInvocationCases)("$name", (testCase) => {

773966

withFakeRuntimeBin({

774967

binName: testCase.binName,