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

推荐订阅源

月光博客
月光博客
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
MyScale Blog
MyScale Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
MongoDB | Blog
MongoDB | Blog
I
InfoQ
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Help Net Security

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 allowlist wildcard target normalization (#75723)...
eleqtrizit · 2026-05-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1246,6 +1246,7 @@ Docs: https://docs.openclaw.ai

12461246

- Plugins/CLI: load the install-records ledger when listing channel-catalog entries, so npm-installed third-party channel plugins resolve through `openclaw channels login`/`channels add` instead of failing with `Unsupported channel`. (#77269) Thanks @pumpkinxing1.

12471247

- Memory wiki/Security: enforce session visibility on shared-memory `wiki_search` and `wiki_get` so sandboxed subagents cannot read transcript content from sibling or parent sessions. Fixes GHSA-72fw-cqh5-f324. Thanks @zsxsoft.

12481248

- Exec approvals: enforce allowlist `argPattern` argument restrictions on Linux and macOS as well as Windows, so an entry like `{ pattern: "python3", argPattern: "^safe\.py$" }` no longer silently relaxes to a path-only match on non-Windows hosts. (#75143) Thanks @eleqtrizit.

1249+

- Security/exec allowlist: collapse `.` and `..` segments in wildcard exec allowlist match targets and canonicalize absolute executable path candidates before regex matching, so a target like `/usr/bin/../../bin/sh` no longer string-matches a `/usr/bin/**` allowlist entry while resolving outside the declared root. (#75723) Thanks @eleqtrizit and @zsxsoft.

12491250

- Agents/compaction: disable Pi auto-compaction whenever OpenClaw effectively owns safeguard compaction, including provider-backed safeguard mode, so Pi and OpenClaw no longer fight over long-session compaction. Fixes #73003. (#73839) Thanks @bradhallett.

12501251

- Telegram/streaming: finalize text replies by stopping the edited stream message instead of sending a second answer bubble, so Telegram turns cannot duplicate the streamed final response. (#77947) Thanks @obviyus.

12511252

- web_search/Brave: fix provider selection when Brave is installed as an external plugin and `tools.web.search.provider: "brave"` is explicitly configured — a redundant provider re-resolution at startup could race and return an empty list, causing a spurious `WEB_SEARCH_PROVIDER_INVALID_AUTODETECT` warning and treating the explicitly configured provider as absent. Fixes #77676. Thanks @openperf.

Original file line numberDiff line numberDiff line change

@@ -69,6 +69,26 @@ describe("exec allowlist matching", () => {

6969

}

7070

});

7171
72+

it.runIf(process.platform !== "win32")(

73+

"rejects wildcard path matches that escape through dot segments",

74+

() => {

75+

expect(

76+

matchAllowlist([{ pattern: "/usr/bin/**" }], {

77+

rawExecutable: "/usr/bin/../../bin/sh",

78+

resolvedPath: "/usr/bin/../../bin/sh",

79+

executableName: "sh",

80+

}),

81+

).toBeNull();

82+

expect(

83+

matchAllowlist([{ pattern: "/usr/bin/**" }], {

84+

rawExecutable: "/usr/bin/sub/../env",

85+

resolvedPath: "/usr/bin/sub/../env",

86+

executableName: "env",

87+

})?.pattern,

88+

).toBe("/usr/bin/**");

89+

},

90+

);

91+
7292

it("matches absolute paths containing regex metacharacters literally", () => {

7393

const plusPathCases = ["/usr/bin/g++", "/usr/bin/clang++"] as const;

7494

for (const candidatePath of plusPathCases) {

Original file line numberDiff line numberDiff line change

@@ -24,6 +24,36 @@ describe("matchesExecAllowlistPattern", () => {

2424

expect(matchesExecAllowlistPattern(pattern, target)).toBe(expected);

2525

});

2626
27+

it.runIf(process.platform !== "win32")(

28+

"matches wildcard paths after collapsing dot segments",

29+

() => {

30+

expect(matchesExecAllowlistPattern("/usr/bin/**", "/usr/bin/../../bin/sh")).toBe(false);

31+

expect(

32+

matchesExecAllowlistPattern("/trusted/tools/**", "/trusted/tools/../../etc/shadow"),

33+

).toBe(false);

34+

expect(matchesExecAllowlistPattern("/usr/bin/**", "../../etc/shadow")).toBe(false);

35+

expect(matchesExecAllowlistPattern("/usr/bin/**", "/usr/bin/./env")).toBe(true);

36+

expect(matchesExecAllowlistPattern("/usr/bin/**", "/usr/./bin/./env")).toBe(true);

37+

expect(matchesExecAllowlistPattern("/usr/bin/**", "/usr/bin/sub/../env")).toBe(true);

38+

expect(matchesExecAllowlistPattern("/usr/bin/*", "/usr/bin/sub/../env")).toBe(true);

39+

expect(matchesExecAllowlistPattern("/usr/bin/**", "/usr/bin/sub/tool")).toBe(true);

40+

},

41+

);

42+
43+

it.runIf(process.platform !== "win32")(

44+

"keeps wildcard dot-segment matches inside the declared POSIX root",

45+

() => {

46+

const bases = ["/usr/bin", "/opt/tools", "/srv/bin"] as const;

47+

for (const base of bases) {

48+

const pattern = `${base}/**`;

49+

expect(matchesExecAllowlistPattern(pattern, `${base}/inside/file`)).toBe(true);

50+

expect(matchesExecAllowlistPattern(pattern, `${base}/sub/../inside`)).toBe(true);

51+

expect(matchesExecAllowlistPattern(pattern, `${base}/../escape`)).toBe(false);

52+

expect(matchesExecAllowlistPattern(pattern, `${base}/sub/../../escape`)).toBe(false);

53+

}

54+

},

55+

);

56+
2757

it("expands home-prefix patterns", () => {

2858

const prevOpenClawHome = process.env.OPENCLAW_HOME;

2959

const prevHome = process.env.HOME;

@@ -58,4 +88,17 @@ describe("matchesExecAllowlistPattern", () => {

5888

true,

5989

);

6090

});

91+
92+

it.runIf(process.platform === "win32")(

93+

"matches Windows wildcard paths after collapsing dot segments",

94+

() => {

95+

expect(

96+

matchesExecAllowlistPattern("C:/Tools/**", "C:/Tools/../../Windows/System32/cmd.exe"),

97+

).toBe(false);

98+

expect(matchesExecAllowlistPattern("C:/Tools/**", String.raw`..\..\Windows\cmd.exe`)).toBe(

99+

false,

100+

);

101+

expect(matchesExecAllowlistPattern("C:/Tools/**", "C:/Tools/bin/../runner.exe")).toBe(true);

102+

},

103+

);

61104

});

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,5 @@

11

import fs from "node:fs";

2+

import path from "node:path";

23

import { normalizeLowercaseStringOrEmpty } from "../shared/string-coerce.js";

34

import { expandHomePrefix } from "./home-dir.js";

45

@@ -21,6 +22,19 @@ function tryRealpath(value: string): string | null {

2122

}

2223

}

2324
25+

function hasDotPathSegment(value: string): boolean {

26+

return value

27+

.replace(/\\/g, "/")

28+

.split("/")

29+

.some((segment) => segment === "." || segment === "..");

30+

}

31+
32+

function normalizeDotPathSegments(value: string): string {

33+

const normalized =

34+

process.platform === "win32" ? path.win32.normalize(value) : path.posix.normalize(value);

35+

return normalizeMatchTarget(normalized);

36+

}

37+
2438

function escapeRegExpLiteral(input: string): string {

2539

return input.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");

2640

}

@@ -81,5 +95,10 @@ export function matchesExecAllowlistPattern(pattern: string, target: string): bo

8195

}

8296

normalizedPattern = normalizeMatchTarget(normalizedPattern);

8397

normalizedTarget = normalizeMatchTarget(normalizedTarget);

98+

// Normalize only the target. Glob patterns are operator-authored strings, and

99+

// normalizing them can change wildcard structure such as `*/..`.

100+

if (hasWildcard && hasDotPathSegment(normalizedTarget)) {

101+

normalizedTarget = normalizeDotPathSegments(normalizedTarget);

102+

}

84103

return compileGlobRegex(normalizedPattern).test(normalizedTarget);

85104

}

Original file line numberDiff line numberDiff line change

@@ -7,6 +7,7 @@ import {

77

resolveExecutable,

88

resolveExecutableFromPathEnv,

99

resolveExecutablePath,

10+

resolveExecutablePathCandidate,

1011

} from "./executable-path.js";

1112
1213

function restoreEnvValue(name: string, value: string | undefined): void {

@@ -87,6 +88,23 @@ describe("executable path helpers", () => {

8788

});

8889

});

8990
91+

it.runIf(process.platform !== "win32")("normalizes POSIX absolute executable candidates", () => {

92+

expect(resolveExecutablePathCandidate("/usr/bin/../../bin/sh")).toBe("/bin/sh");

93+

expect(resolveExecutablePathCandidate("/usr/bin/./env")).toBe("/usr/bin/env");

94+

});

95+
96+

it.runIf(process.platform === "win32")(

97+

"normalizes Windows absolute executable candidates",

98+

() => {

99+

expect(

100+

resolveExecutablePathCandidate(String.raw`C:\Tools\..\..\Windows\System32\cmd.exe`),

101+

).toBe(String.raw`C:\Windows\System32\cmd.exe`);

102+

expect(resolveExecutablePathCandidate(String.raw`C:\Tools\.\runner.exe`)).toBe(

103+

String.raw`C:\Tools\runner.exe`,

104+

);

105+

},

106+

);

107+
90108

it("does not treat drive-less rooted windows paths as cwd-relative executables", () => {

91109

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

92110

return;

Original file line numberDiff line numberDiff line change

@@ -25,7 +25,7 @@ export function resolveExecutablePathCandidate(

2525

return expanded;

2626

}

2727

if (path.isAbsolute(expanded)) {

28-

return expanded;

28+

return path.resolve(expanded);

2929

}

3030

const base = options?.cwd && options.cwd.trim() ? options.cwd.trim() : process.cwd();

3131

return path.resolve(base, expanded);