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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
量子位
S
SegmentFault 最新的问题
博客园 - 聂微东
博客园 - 【当耐特】
J
Java Code Geeks
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
V
V2EX
人人都是产品经理
人人都是产品经理
博客园 - Franky
罗磊的独立博客
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
云风的 BLOG
云风的 BLOG
Y
Y Combinator Blog
Apple Machine Learning Research
Apple Machine Learning Research

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: stop hook fallback after security blocks · openclaw/...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -191,6 +191,20 @@ function primeHookPackNpmFallback() {

191191

return { cfg, installedCfg };

192192

}

193193194+

function primeBlockedNpmPluginInstall(params: {

195+

spec: string;

196+

pluginId: string;

197+

code?: "security_scan_blocked" | "security_scan_failed";

198+

}) {

199+

loadConfig.mockReturnValue({} as OpenClawConfig);

200+

mockClawHubPackageNotFound(params.spec);

201+

installPluginFromNpmSpec.mockResolvedValue({

202+

ok: false,

203+

error: `Plugin "${params.pluginId}" installation blocked: dangerous code patterns detected: finding details`,

204+

code: params.code ?? "security_scan_blocked",

205+

});

206+

}

207+194208

function primeHookPackPathFallback(params: {

195209

tmpRoot: string;

196210

pluginInstallError: string;

@@ -606,6 +620,30 @@ describe("plugins cli install", () => {

606620

);

607621

});

608622623+

it("does not fall back to hook pack for linked path when a no-flag security scan blocks", async () => {

624+

const localPluginDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-link-plugin-"));

625+

const pluginInstallError = "plugin blocked by security scan";

626+627+

loadConfig.mockReturnValue({} as OpenClawConfig);

628+

installPluginFromPath.mockResolvedValue({

629+

ok: false,

630+

error: pluginInstallError,

631+

code: "security_scan_blocked",

632+

});

633+634+

try {

635+

await expect(

636+

runPluginsCommand(["plugins", "install", localPluginDir, "--link"]),

637+

).rejects.toThrow("__exit__:1");

638+

} finally {

639+

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

640+

}

641+642+

expect(installHooksFromPath).not.toHaveBeenCalled();

643+

expect(runtimeErrors.at(-1)).toContain(pluginInstallError);

644+

expect(runtimeErrors.at(-1)).not.toContain("Also not a valid hook pack");

645+

});

646+609647

it("passes dangerous force unsafe install to local hook-pack fallback installs", async () => {

610648

const tmpRoot = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-hook-install-"));

611649

primeHookPackPathFallback({

@@ -740,6 +778,30 @@ describe("plugins cli install", () => {

740778

).toBe(true);

741779

});

742780781+

it("does not fall back to hook pack for local path when a no-flag security scan fails", async () => {

782+

const localPluginDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-local-plugin-"));

783+

const pluginInstallError = "plugin security scan failed";

784+785+

loadConfig.mockReturnValue({} as OpenClawConfig);

786+

installPluginFromPath.mockResolvedValue({

787+

ok: false,

788+

error: pluginInstallError,

789+

code: "security_scan_failed",

790+

});

791+792+

try {

793+

await expect(runPluginsCommand(["plugins", "install", localPluginDir])).rejects.toThrow(

794+

"__exit__:1",

795+

);

796+

} finally {

797+

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

798+

}

799+800+

expect(installHooksFromPath).not.toHaveBeenCalled();

801+

expect(runtimeErrors.at(-1)).toContain(pluginInstallError);

802+

expect(runtimeErrors.at(-1)).not.toContain("Also not a valid hook pack");

803+

});

804+743805

it("does not fall back to hook pack for local path when dangerous force unsafe install is set", async () => {

744806

const localPluginDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-local-plugin-"));

745807

const cfg = {} as OpenClawConfig;

@@ -822,6 +884,21 @@ describe("plugins cli install", () => {

822884

expect(runtimeErrors.at(-1)).toContain(pluginInstallError);

823885

});

824886887+

it("does not fall back to hook pack for npm installs when a no-flag security scan blocks", async () => {

888+

primeBlockedNpmPluginInstall({

889+

spec: "@acme/unsafe-plugin",

890+

pluginId: "unsafe-plugin",

891+

});

892+893+

await expect(runPluginsCommand(["plugins", "install", "@acme/unsafe-plugin"])).rejects.toThrow(

894+

"__exit__:1",

895+

);

896+897+

expect(installHooksFromNpmSpec).not.toHaveBeenCalled();

898+

expect(runtimeErrors.at(-1)).toContain('Plugin "unsafe-plugin" installation blocked');

899+

expect(runtimeErrors.at(-1)).not.toContain("Also not a valid hook pack");

900+

});

901+825902

it("does not fall back to hook pack for npm installs when security scan fails under dangerous force unsafe install", async () => {

826903

const cfg = {} as OpenClawConfig;

827904

const pluginInstallError = "plugin security scan failed";