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

推荐订阅源

WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
雷峰网
雷峰网
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
V
V2EX
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
Vercel News
Vercel News
美团技术团队
人人都是产品经理
人人都是产品经理
The Cloudflare 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(security): prevent workspace PATH injection via servi...
pgondhi987 · 2026-04-29 · via Recent Commits to openclaw:main

@@ -8,36 +8,197 @@ vi.mock("../process/exec.js", () => ({

88

runExec,

99

}));

101011+

function mockTrashContainer(...suffixes: string[]) {

12+

let call = 0;

13+

return vi.spyOn(fs, "mkdtempSync").mockImplementation((prefix) => {

14+

const suffix = suffixes[call] ?? "secure";

15+

call += 1;

16+

return `${prefix}${suffix}`;

17+

});

18+

}

19+1120

describe("browser trash", () => {

1221

beforeEach(() => {

1322

vi.restoreAllMocks();

1423

runExec.mockReset();

1524

vi.spyOn(Date, "now").mockReturnValue(123);

1625

vi.spyOn(os, "homedir").mockReturnValue("/home/test");

26+

vi.spyOn(os, "tmpdir").mockReturnValue("/tmp");

27+

vi.spyOn(fs, "lstatSync").mockReturnValue({

28+

isDirectory: () => true,

29+

isSymbolicLink: () => false,

30+

} as fs.Stats);

31+

vi.spyOn(fs.realpathSync, "native").mockImplementation((candidate) => String(candidate));

1732

});

183319-

it("returns the target path when trash exits successfully", async () => {

34+

it("moves paths to a reserved user trash container without invoking a PATH-resolved command", async () => {

2035

const { movePathToTrash } = await import("./trash.js");

21-

runExec.mockResolvedValue(undefined);

22-

const mkdirSync = vi.spyOn(fs, "mkdirSync");

23-

const renameSync = vi.spyOn(fs, "renameSync");

36+

const mkdirSync = vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

37+

const mkdtempSync = mockTrashContainer("secure");

38+

const renameSync = vi.spyOn(fs, "renameSync").mockImplementation(() => undefined);

39+

const cpSync = vi.spyOn(fs, "cpSync");

40+

const rmSync = vi.spyOn(fs, "rmSync");

244125-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe("/tmp/demo");

26-

expect(runExec).toHaveBeenCalledWith("trash", ["/tmp/demo"], { timeoutMs: 10_000 });

27-

expect(mkdirSync).not.toHaveBeenCalled();

28-

expect(renameSync).not.toHaveBeenCalled();

42+

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

43+

"/home/test/.Trash/demo-123-secure/demo",

44+

);

45+

expect(runExec).not.toHaveBeenCalled();

46+

expect(mkdirSync).toHaveBeenCalledWith("/home/test/.Trash", {

47+

recursive: true,

48+

mode: 0o700,

49+

});

50+

expect(mkdtempSync).toHaveBeenCalledWith("/home/test/.Trash/demo-123-");

51+

expect(renameSync).toHaveBeenCalledWith("/tmp/demo", "/home/test/.Trash/demo-123-secure/demo");

52+

expect(cpSync).not.toHaveBeenCalled();

53+

expect(rmSync).not.toHaveBeenCalled();

2954

});

305531-

it("falls back to rename when trash exits non-zero", async () => {

56+

it("uses the resolved trash directory for reserved destinations", async () => {

3257

const { movePathToTrash } = await import("./trash.js");

33-

runExec.mockRejectedValue(new Error("permission denied"));

34-

const mkdirSync = vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

35-

const existsSync = vi.spyOn(fs, "existsSync").mockReturnValue(false);

58+

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

59+

vi.spyOn(fs.realpathSync, "native").mockImplementation((candidate) => {

60+

const value = String(candidate);

61+

if (value === "/home/test") {

62+

return "/real/home/test";

63+

}

64+

if (value === "/home/test/.Trash") {

65+

return "/real/home/test/.Trash";

66+

}

67+

return value;

68+

});

69+

const mkdtempSync = mockTrashContainer("secure");

3670

const renameSync = vi.spyOn(fs, "renameSync").mockImplementation(() => undefined);

377138-

await expect(movePathToTrash("/tmp/demo")).resolves.toBe("/home/test/.Trash/demo-123");

39-

expect(mkdirSync).toHaveBeenCalledWith("/home/test/.Trash", { recursive: true });

40-

expect(existsSync).toHaveBeenCalledWith("/home/test/.Trash/demo-123");

41-

expect(renameSync).toHaveBeenCalledWith("/tmp/demo", "/home/test/.Trash/demo-123");

72+

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

73+

"/real/home/test/.Trash/demo-123-secure/demo",

74+

);

75+

expect(mkdtempSync).toHaveBeenCalledWith("/real/home/test/.Trash/demo-123-");

76+

expect(renameSync).toHaveBeenCalledWith(

77+

"/tmp/demo",

78+

"/real/home/test/.Trash/demo-123-secure/demo",

79+

);

80+

});

81+82+

it("refuses to trash filesystem roots", async () => {

83+

const { movePathToTrash } = await import("./trash.js");

84+85+

await expect(movePathToTrash("/")).rejects.toThrow("Refusing to trash root path");

86+

});

87+88+

it("refuses to trash paths outside allowed roots", async () => {

89+

const { movePathToTrash } = await import("./trash.js");

90+91+

await expect(movePathToTrash("/etc/openclaw-demo")).rejects.toThrow(

92+

"Refusing to trash path outside allowed roots",

93+

);

94+

});

95+96+

it("refuses to use a symlinked trash directory", async () => {

97+

const { movePathToTrash } = await import("./trash.js");

98+

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

99+

vi.spyOn(fs, "lstatSync").mockReturnValue({

100+

isDirectory: () => true,

101+

isSymbolicLink: () => true,

102+

} as fs.Stats);

103+104+

await expect(movePathToTrash("/tmp/demo")).rejects.toThrow(

105+

"Refusing to use non-directory/symlink trash directory",

106+

);

107+

});

108+109+

it("falls back to copy and remove when rename crosses filesystems", async () => {

110+

const { movePathToTrash } = await import("./trash.js");

111+

const exdev = Object.assign(new Error("cross-device"), { code: "EXDEV" });

112+

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

113+

mockTrashContainer("secure");

114+

vi.spyOn(fs, "renameSync").mockImplementation(() => {

115+

throw exdev;

116+

});

117+

const cpSync = vi.spyOn(fs, "cpSync").mockImplementation(() => undefined);

118+

const rmSync = vi.spyOn(fs, "rmSync").mockImplementation(() => undefined);

119+120+

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

121+

"/home/test/.Trash/demo-123-secure/demo",

122+

);

123+

expect(cpSync).toHaveBeenCalledWith("/tmp/demo", "/home/test/.Trash/demo-123-secure/demo", {

124+

recursive: true,

125+

force: false,

126+

errorOnExist: true,

127+

});

128+

expect(rmSync).toHaveBeenCalledWith("/tmp/demo", { recursive: true, force: false });

129+

});

130+131+

it("retries copy fallback when the copy destination is created concurrently", async () => {

132+

const { movePathToTrash } = await import("./trash.js");

133+

const exdev = Object.assign(new Error("cross-device"), { code: "EXDEV" });

134+

const copyCollision = Object.assign(new Error("copy exists"), {

135+

code: "ERR_FS_CP_EEXIST",

136+

});

137+

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

138+

mockTrashContainer("first", "second");

139+

vi.spyOn(fs, "renameSync").mockImplementation(() => {

140+

throw exdev;

141+

});

142+

const cpSync = vi

143+

.spyOn(fs, "cpSync")

144+

.mockImplementationOnce(() => {

145+

throw copyCollision;

146+

})

147+

.mockImplementation(() => undefined);

148+

const rmSync = vi.spyOn(fs, "rmSync").mockImplementation(() => undefined);

149+150+

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

151+

"/home/test/.Trash/demo-123-second/demo",

152+

);

153+

expect(cpSync).toHaveBeenNthCalledWith(

154+

1,

155+

"/tmp/demo",

156+

"/home/test/.Trash/demo-123-first/demo",

157+

{

158+

recursive: true,

159+

force: false,

160+

errorOnExist: true,

161+

},

162+

);

163+

expect(cpSync).toHaveBeenNthCalledWith(

164+

2,

165+

"/tmp/demo",

166+

"/home/test/.Trash/demo-123-second/demo",

167+

{

168+

recursive: true,

169+

force: false,

170+

errorOnExist: true,

171+

},

172+

);

173+

expect(rmSync).toHaveBeenCalledTimes(1);

174+

expect(Date.now).toHaveBeenCalledTimes(1);

175+

});

176+177+

it("retries with the same timestamp when the destination is created concurrently", async () => {

178+

const { movePathToTrash } = await import("./trash.js");

179+

const collision = Object.assign(new Error("exists"), { code: "EEXIST" });

180+

vi.spyOn(fs, "mkdirSync").mockImplementation(() => undefined);

181+

mockTrashContainer("first", "second");

182+

const renameSync = vi

183+

.spyOn(fs, "renameSync")

184+

.mockImplementationOnce(() => {

185+

throw collision;

186+

})

187+

.mockImplementation(() => undefined);

188+189+

await expect(movePathToTrash("/tmp/demo")).resolves.toBe(

190+

"/home/test/.Trash/demo-123-second/demo",

191+

);

192+

expect(renameSync).toHaveBeenNthCalledWith(

193+

1,

194+

"/tmp/demo",

195+

"/home/test/.Trash/demo-123-first/demo",

196+

);

197+

expect(renameSync).toHaveBeenNthCalledWith(

198+

2,

199+

"/tmp/demo",

200+

"/home/test/.Trash/demo-123-second/demo",

201+

);

202+

expect(Date.now).toHaveBeenCalledTimes(1);

42203

});

43204

});