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

推荐订阅源

WordPress大学
WordPress大学
GbyAI
GbyAI
P
Proofpoint News Feed
B
Blog
MyScale Blog
MyScale Blog
V
V2EX
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
量子位
Jina AI
Jina AI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
罗磊的独立博客
L
LangChain Blog
I
InfoQ
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
小众软件
小众软件
V
Visual Studio Blog
月光博客
月光博客
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): block workspace env from overriding Window...
mmaps · 2026-05-05 · via Recent Commits to openclaw:main
11

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

2+

import {

3+

DEFAULT_WINDOWS_SYSTEM_ROOT,

4+

_resetWindowsInstallRootsForTests,

5+

} from "../infra/windows-install-roots.js";

26

import type { WindowsAclEntry, WindowsAclSummary } from "./windows-acl.js";

3748

const MOCK_USERNAME = "MockUser";

59

const mockUserInfo = () => ({ username: MOCK_USERNAME });

610

const emptyUserInfo = () => ({ username: "" });

11+

const DEFAULT_ICACLS = `${DEFAULT_WINDOWS_SYSTEM_ROOT}\\System32\\icacls.exe`;

12+

const DEFAULT_WHOAMI = `${DEFAULT_WINDOWS_SYSTEM_ROOT}\\System32\\whoami.exe`;

713814

let createIcaclsResetCommand: typeof import("./windows-acl.js").createIcaclsResetCommand;

915

let formatIcaclsResetCommand: typeof import("./windows-acl.js").formatIcaclsResetCommand;

@@ -27,6 +33,7 @@ beforeAll(async () => {

27332834

beforeEach(() => {

2935

vi.unstubAllEnvs();

36+

_resetWindowsInstallRootsForTests();

3037

});

31383239

function aclEntry(params: {

@@ -420,11 +427,32 @@ Successfully processed 1 files`;

420427421428

const result = await inspectWindowsAcl("C:\\test\\file.txt", {

422429

exec: mockExec,

430+

env: {},

423431

});

424432

expectInspectSuccess(result, 2);

425433

// /sid is passed so that account names are printed as SIDs, making the

426434

// audit locale-independent (fixes #35834).

427-

expect(mockExec).toHaveBeenCalledWith("icacls.exe", ["C:\\test\\file.txt", "/sid"]);

435+

expect(mockExec).toHaveBeenCalledWith(DEFAULT_ICACLS, ["C:\\test\\file.txt", "/sid"]);

436+

});

437+438+

it("uses the discovered process SystemRoot when env options are omitted", async () => {

439+

_resetWindowsInstallRootsForTests({ queryRegistryValue: () => null });

440+

vi.stubEnv("SystemRoot", "D:\\Windows");

441+442+

const mockExec = vi.fn().mockResolvedValue({

443+

stdout: "C:\\test\\file.txt *S-1-5-18:(F)",

444+

stderr: "",

445+

});

446+447+

const result = await inspectWindowsAcl("C:\\test\\file.txt", {

448+

exec: mockExec,

449+

});

450+451+

expectInspectSuccess(result, 1);

452+

expect(mockExec).toHaveBeenCalledWith("D:\\Windows\\System32\\icacls.exe", [

453+

"C:\\test\\file.txt",

454+

"/sid",

455+

]);

428456

});

429457430458

it("classifies *S-1-5-18 (SID form of SYSTEM from /sid) as trusted", async () => {

@@ -469,8 +497,8 @@ Successfully processed 1 files`;

469497

expectInspectSuccess(result, 2);

470498

expect(result.trusted).toHaveLength(2);

471499

expect(result.untrustedGroup).toHaveLength(0);

472-

expect(mockExec).toHaveBeenNthCalledWith(1, "icacls.exe", ["C:\\test\\file.txt", "/sid"]);

473-

expect(mockExec).toHaveBeenNthCalledWith(2, "whoami.exe", ["/user", "/fo", "csv", "/nh"]);

500+

expect(mockExec).toHaveBeenNthCalledWith(1, DEFAULT_ICACLS, ["C:\\test\\file.txt", "/sid"]);

501+

expect(mockExec).toHaveBeenNthCalledWith(2, DEFAULT_WHOAMI, ["/user", "/fo", "csv", "/nh"]);

474502

});

475503476504

it("returns error state on exec failure", async () => {

@@ -533,21 +561,82 @@ Successfully processed 1 files`;

533561534562

const result = await inspectWindowsAcl("C:\\test\\file.txt", {

535563

exec: mockExec,

536-

env: { SystemRoot: "C:\\Windows" },

564+

env: { SystemRoot: "D:\\Windows" },

537565

});

538566539567

expectInspectSuccess(result, 1);

540-

expect(mockExec).toHaveBeenNthCalledWith(1, "C:\\Windows\\System32\\icacls.exe", [

568+

expect(mockExec).toHaveBeenNthCalledWith(1, "D:\\Windows\\System32\\icacls.exe", [

541569

"C:\\test\\file.txt",

542570

"/sid",

543571

]);

544-

expect(mockExec).toHaveBeenNthCalledWith(2, "C:\\Windows\\System32\\whoami.exe", [

572+

expect(mockExec).toHaveBeenNthCalledWith(2, "D:\\Windows\\System32\\whoami.exe", [

545573

"/user",

546574

"/fo",

547575

"csv",

548576

"/nh",

549577

]);

550578

});

579+580+

it.each([

581+

["systemroot", "D:\\Windows"],

582+

["windir", "E:\\Windows"],

583+

])("resolves explicit env key %s case-insensitively", async (key, root) => {

584+

const mockExec = vi.fn().mockResolvedValueOnce({

585+

stdout: "C:\\test\\file.txt *S-1-5-18:(F)",

586+

stderr: "",

587+

});

588+589+

const result = await inspectWindowsAcl("C:\\test\\file.txt", {

590+

exec: mockExec,

591+

env: { [key]: root },

592+

});

593+594+

expectInspectSuccess(result, 1);

595+

expect(mockExec).toHaveBeenCalledWith(`${root}\\System32\\icacls.exe`, [

596+

"C:\\test\\file.txt",

597+

"/sid",

598+

]);

599+

});

600+601+

it("does not resolve Windows system commands through a relative SystemRoot", async () => {

602+

const mockExec = vi

603+

.fn()

604+

.mockResolvedValueOnce({

605+

stdout: "C:\\test\\file.txt *S-1-5-21-111-222-333-1001:(F)",

606+

stderr: "",

607+

})

608+

.mockResolvedValueOnce({

609+

stdout: '"mock-host\\\\MockUser","S-1-5-21-111-222-333-1001"\r\n',

610+

stderr: "",

611+

});

612+613+

const result = await inspectWindowsAcl("C:\\test\\file.txt", {

614+

exec: mockExec,

615+

env: { SystemRoot: ".\\fake-root" },

616+

});

617+618+

expectInspectSuccess(result, 1);

619+

expect(mockExec).toHaveBeenNthCalledWith(1, DEFAULT_ICACLS, ["C:\\test\\file.txt", "/sid"]);

620+

expect(mockExec).toHaveBeenNthCalledWith(2, DEFAULT_WHOAMI, ["/user", "/fo", "csv", "/nh"]);

621+

});

622+623+

it("uses a valid WINDIR when SystemRoot is invalid", async () => {

624+

const mockExec = vi.fn().mockResolvedValueOnce({

625+

stdout: "C:\\test\\file.txt *S-1-5-18:(F)",

626+

stderr: "",

627+

});

628+629+

const result = await inspectWindowsAcl("C:\\test\\file.txt", {

630+

exec: mockExec,

631+

env: { SystemRoot: ".\\fake-root", WINDIR: "E:\\Windows" },

632+

});

633+634+

expectInspectSuccess(result, 1);

635+

expect(mockExec).toHaveBeenCalledWith("E:\\Windows\\System32\\icacls.exe", [

636+

"C:\\test\\file.txt",

637+

"/sid",

638+

]);

639+

});

551640

});

552641553642

describe("formatWindowsAclSummary", () => {

@@ -619,7 +708,15 @@ Successfully processed 1 files`;

619708

env,

620709

});

621710

expect(result).toBe(

622-

'icacls "C:\\test\\file.txt" /inheritance:r /grant:r "WORKGROUP\\TestUser:F" /grant:r "*S-1-5-18:F"',

711+

[

712+

DEFAULT_ICACLS,

713+

'"C:\\test\\file.txt"',

714+

"/inheritance:r",

715+

"/grant:r",

716+

'"WORKGROUP\\TestUser:F"',

717+

"/grant:r",

718+

'"*S-1-5-18:F"',

719+

].join(" "),

623720

);

624721

});

625722

@@ -632,6 +729,15 @@ Successfully processed 1 files`;

632729

expect(result).toContain("(OI)(CI)F");

633730

});

634731732+

it("uses a validated SystemRoot in the display command", () => {

733+

const result = formatIcaclsResetCommand("C:\\test\\file.txt", {

734+

isDir: false,

735+

env: { SystemRoot: "D:\\Windows", USERNAME: "TestUser" },

736+

});

737+738+

expect(result.startsWith("D:\\Windows\\System32\\icacls.exe ")).toBe(true);

739+

});

740+635741

it("uses system username when env is empty (falls back to os.userInfo)", () => {

636742

// When env is empty, resolveWindowsUserPrincipal falls back to os.userInfo().username

637743

const result = formatIcaclsResetCommand("C:\\test\\file.txt", {

@@ -653,11 +759,20 @@ Successfully processed 1 files`;

653759

env,

654760

});

655761

expect(result).not.toBeNull();

656-

expect(result?.command).toBe("icacls");

762+

expect(result?.command).toBe(DEFAULT_ICACLS);

657763

expect(result?.args).toContain("C:\\test\\file.txt");

658764

expect(result?.args).toContain("/inheritance:r");

659765

});

660766767+

it("uses a validated SystemRoot for the structured command executable", () => {

768+

const result = createIcaclsResetCommand("C:\\test\\file.txt", {

769+

isDir: false,

770+

env: { SystemRoot: "D:\\Windows", USERNAME: "TestUser" },

771+

});

772+773+

expect(result?.command).toBe("D:\\Windows\\System32\\icacls.exe");

774+

});

775+661776

it("returns command with system username when env is empty (falls back to os.userInfo)", () => {

662777

// When env is empty, resolveWindowsUserPrincipal falls back to os.userInfo().username

663778

const result = createIcaclsResetCommand("C:\\test\\file.txt", {

@@ -667,7 +782,7 @@ Successfully processed 1 files`;

667782

});

668783

// Should return a valid command using the system username

669784

expect(result).not.toBeNull();

670-

expect(result?.command).toBe("icacls");

785+

expect(result?.command).toBe(DEFAULT_ICACLS);

671786

expect(result?.args).toContain(`${MOCK_USERNAME}:F`);

672787

});

673788