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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
B
Blog
Jina AI
Jina AI
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
美团技术团队
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
The Cloudflare Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
GbyAI
GbyAI
腾讯CDC
MongoDB | Blog
MongoDB | 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(infra): share trusted Windows process argv lookup · o...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -14,7 +14,8 @@ import { z } from "zod";

1414

import { resolveConfigPath, resolveGatewayLockDir, resolveStateDir } from "../config/paths.js";

1515

import { isPidAlive } from "../shared/pid-alive.js";

1616

import { safeParseJsonWithSchema } from "../utils/zod-parse.js";

17-

import { isGatewayArgv, parseProcCmdline, parseWindowsCmdline } from "./gateway-process-argv.js";

17+

import { isGatewayArgv, parseProcCmdline } from "./gateway-process-argv.js";

18+

import { readWindowsProcessArgsSync } from "./windows-port-pids.js";

1819
1920

const DEFAULT_TIMEOUT_MS = 5000;

2021

const DEFAULT_POLL_INTERVAL_MS = 100;

@@ -79,32 +80,8 @@ function readLinuxCmdline(pid: number): string[] | null {

7980
8081

const CMDLINE_EXEC_TIMEOUT_MS = 1000;

8182
82-

/**

83-

* Read the command line of a Windows process via `wmic`.

84-

* Returns an argv-style array, or null when the lookup fails (process gone,

85-

* `wmic` missing/deprecated, timeout, etc.).

86-

*/

8783

function readWindowsCmdline(pid: number): string[] | null {

88-

try {

89-

// Omit `encoding` so execFileSync returns a Buffer — wmic emits UTF-16LE

90-

// (with BOM) on most Windows 10/11 builds, which would be garbled as UTF-8.

91-

const buf = execFileSync(

92-

"wmic",

93-

["process", "where", `processid=${pid}`, "get", "CommandLine", "/value"],

94-

{ timeout: CMDLINE_EXEC_TIMEOUT_MS, windowsHide: true, stdio: ["ignore", "pipe", "ignore"] },

95-

) as Buffer;

96-

const raw =

97-

buf.length >= 2 && buf[0] === 0xff && buf[1] === 0xfe

98-

? buf.toString("utf16le")

99-

: buf.toString("utf8");

100-

const match = raw.match(/CommandLine=(.+)/);

101-

if (!match) {

102-

return null;

103-

}

104-

return parseWindowsCmdline(match[1].trim());

105-

} catch {

106-

return null;

107-

}

84+

return readWindowsProcessArgsSync(pid, CMDLINE_EXEC_TIMEOUT_MS);

10885

}

10986
11087

/**

Original file line numberDiff line numberDiff line change

@@ -140,6 +140,26 @@ describe("gateway-processes", () => {

140140

expect(parseCmdScriptCommandLineMock).toHaveBeenCalledWith("node.exe gateway run");

141141

});

142142
143+

it("decodes UTF-16 WMIC output when reading windows process args", () => {

144+

setPlatform("win32");

145+

spawnSyncMock

146+

.mockReturnValueOnce({

147+

error: new Error("powershell missing"),

148+

status: null,

149+

stdout: "",

150+

})

151+

.mockReturnValueOnce({

152+

error: null,

153+

status: 0,

154+

stdout: Buffer.from("\uFEFFCommandLine=node.exe gateway run\r\n", "utf16le"),

155+

});

156+

parseCmdScriptCommandLineMock.mockReturnValue(["node.exe", "gateway", "run"]);

157+
158+

expect(readGatewayProcessArgsSync(77)).toEqual(["node.exe", "gateway", "run"]);

159+

expect(spawnSyncMock.mock.calls[1]?.[0]).toBe(getWindowsWmicExePath());

160+

expect(parseCmdScriptCommandLineMock).toHaveBeenCalledWith("node.exe gateway run");

161+

});

162+
143163

it("signals only verified gateway processes", () => {

144164

setPlatform("linux");

145165

readFileSyncMock.mockReturnValue("node\0gateway\0");

Original file line numberDiff line numberDiff line change

@@ -95,8 +95,17 @@ export function readWindowsListeningPidsResultSync(

9595

// Windows process-args reading (PowerShell → WMIC fallback)

9696

// ---------------------------------------------------------------------------

9797
98-

function extractWindowsCommandLine(raw: string): string | null {

99-

const lines = normalizeStringEntries(raw.split(/\r?\n/));

98+

function decodeWindowsProcessOutput(output: Buffer | string): string {

99+

if (!Buffer.isBuffer(output)) {

100+

return output;

101+

}

102+

return output.length >= 2 && output[0] === 0xff && output[1] === 0xfe

103+

? output.toString("utf16le")

104+

: output.toString("utf8");

105+

}

106+
107+

function extractWindowsCommandLine(raw: Buffer | string): string | null {

108+

const lines = normalizeStringEntries(decodeWindowsProcessOutput(raw).split(/\r?\n/));

100109

for (const line of lines) {

101110

if (!normalizeLowercaseStringOrEmpty(line).startsWith("commandline=")) {

102111

continue;

@@ -140,9 +149,9 @@ export function readWindowsProcessArgsResultSync(

140149

getWindowsWmicExePath(),

141150

["process", "where", `ProcessId=${pid}`, "get", "CommandLine", "/value"],

142151

{

143-

encoding: "utf8",

144152

timeout: timeoutMs,

145153

windowsHide: true,

154+

stdio: ["ignore", "pipe", "ignore"],

146155

},

147156

);

148157

if (!wmic.error && wmic.status === 0) {