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

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator 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(plugins): allow benign LanceDB runtime shims · opencl...
steipete · 2026-05-14 · via Recent Commits to openclaw:main

@@ -27,6 +27,7 @@ type InstallScanFinding = {

2727

file: string;

2828

line: number;

2929

message: string;

30+

evidence?: string;

3031

};

31323233

type BuiltinInstallScan = {

@@ -339,6 +340,27 @@ function buildBuiltinScanFromSummary(summary: {

339340

};

340341

}

341342343+

function rebuildBuiltinScanCounts(scan: BuiltinInstallScan): BuiltinInstallScan {

344+

let critical = 0;

345+

let warn = 0;

346+

let info = 0;

347+

for (const finding of scan.findings) {

348+

if (finding.severity === "critical") {

349+

critical += 1;

350+

} else if (finding.severity === "warn") {

351+

warn += 1;

352+

} else {

353+

info += 1;

354+

}

355+

}

356+

return {

357+

...scan,

358+

critical,

359+

warn,

360+

info,

361+

};

362+

}

363+342364

const DEFAULT_PACKAGE_MANIFEST_TRAVERSAL_LIMITS: PackageManifestTraversalLimits = {

343365

maxDepth: 64,

344366

maxDirectories: 10_000,

@@ -540,6 +562,56 @@ async function collectNonOverlappingPackageScanRoots(packageDirs: string[]): Pro

540562

return selectedRoots.map((selectedRoot) => selectedRoot.packageDir);

541563

}

542564565+

function normalizeRelativeScanPath(relativePath: string): string {

566+

return relativePath.split(path.sep).join("/");

567+

}

568+569+

function isKnownBenignLanceDbFinding(params: {

570+

finding: InstallScanFinding;

571+

packageDir: string;

572+

}): boolean {

573+

const relativePath = normalizeRelativeScanPath(

574+

path.relative(params.packageDir, params.finding.file),

575+

);

576+

const evidence = params.finding.evidence ?? "";

577+

if (params.finding.ruleId === "dangerous-exec" && relativePath === "dist/native.js") {

578+

return (

579+

/child_process/.test(evidence) &&

580+

/\bexecSync\(\s*['"](?:ldd --version|which ldd)['"]/.test(evidence)

581+

);

582+

}

583+

if (

584+

params.finding.ruleId === "dynamic-code-execution" &&

585+

relativePath === "dist/embedding/transformers.js"

586+

) {

587+

return /\beval\(\s*['"]import\(["']@huggingface\/transformers["']\)['"]\s*\)/.test(evidence);

588+

}

589+

return false;

590+

}

591+592+

async function suppressKnownBenignInstalledDependencyFindings(params: {

593+

builtinScan: BuiltinInstallScan;

594+

packageDir: string;

595+

}): Promise<BuiltinInstallScan> {

596+

if (params.builtinScan.status !== "ok" || params.builtinScan.findings.length === 0) {

597+

return params.builtinScan;

598+

}

599+

const manifest = await tryReadJson<PackageManifest>(path.join(params.packageDir, "package.json"));

600+

if (manifest?.name !== "@lancedb/lancedb") {

601+

return params.builtinScan;

602+

}

603+

const findings = params.builtinScan.findings.filter(

604+

(finding) => !isKnownBenignLanceDbFinding({ finding, packageDir: params.packageDir }),

605+

);

606+

if (findings.length === params.builtinScan.findings.length) {

607+

return params.builtinScan;

608+

}

609+

return rebuildBuiltinScanCounts({

610+

...params.builtinScan,

611+

findings,

612+

});

613+

}

614+543615

async function collectPackageManifestPaths(params: {

544616

allowManagedNpmRootPackagePeerSymlinks?: boolean;

545617

rootDir: string;

@@ -764,6 +836,7 @@ async function scanManifestDependencyDenylist(params: {

764836

}

765837766838

async function scanDirectoryTarget(params: {

839+

deferBuiltinWarnings?: boolean;

767840

excludeTestFiles?: boolean;

768841

failOnTruncated?: boolean;

769842

includeHiddenDirectories?: boolean;

@@ -793,7 +866,7 @@ async function scanDirectoryTarget(params: {

793866

);

794867

}

795868

const builtinScan = buildBuiltinScanFromSummary(scanSummary);

796-

if (params.suppressBuiltinWarnings) {

869+

if (params.suppressBuiltinWarnings || params.deferBuiltinWarnings) {

797870

return builtinScan;

798871

}

799872

if (scanSummary.critical > 0) {

@@ -1196,7 +1269,10 @@ export async function scanInstalledPackageDependencyTreeRuntime(params: {

11961269

}

11971270

const packageRealPath = await fs.realpath(packageDir).catch(() => path.resolve(packageDir));

11981271

const isPluginRoot = packageRealPath === pluginRootRealPath;

1199-

const builtinScan = await scanDirectoryTarget({

1272+

const installedTreeSuspiciousMessage = `Plugin "{target}" installed tree has {count} suspicious code pattern(s). Run "openclaw security audit --deep" for details.`;

1273+

const installedTreeWarningMessage = `WARNING: Plugin "${params.pluginId}" installed tree contains dangerous code patterns`;

1274+

const rawBuiltinScan = await scanDirectoryTarget({

1275+

deferBuiltinWarnings: true,

12001276

excludeTestFiles: isPluginRoot,

12011277

failOnTruncated: true,

12021278

includeHiddenDirectories: true,

@@ -1206,10 +1282,27 @@ export async function scanInstalledPackageDependencyTreeRuntime(params: {

12061282

maxFiles: remainingMaxFiles,

12071283

path: packageDir,

12081284

suppressBuiltinWarnings: params.trustedSourceLinkedOfficialInstall === true,

1209-

suspiciousMessage: `Plugin "{target}" installed tree has {count} suspicious code pattern(s). Run "openclaw security audit --deep" for details.`,

1285+

suspiciousMessage: installedTreeSuspiciousMessage,

12101286

targetName: params.pluginId,

1211-

warningMessage: `WARNING: Plugin "${params.pluginId}" installed tree contains dangerous code patterns`,

1287+

warningMessage: installedTreeWarningMessage,

12121288

});

1289+

const builtinScan = await suppressKnownBenignInstalledDependencyFindings({

1290+

builtinScan: rawBuiltinScan,

1291+

packageDir,

1292+

});

1293+

if (params.trustedSourceLinkedOfficialInstall !== true && builtinScan.status === "ok") {

1294+

if (builtinScan.critical > 0) {

1295+

params.logger.warn?.(

1296+

`${installedTreeWarningMessage}: ${buildCriticalDetails({ findings: builtinScan.findings })}`,

1297+

);

1298+

} else if (builtinScan.warn > 0) {

1299+

params.logger.warn?.(

1300+

installedTreeSuspiciousMessage

1301+

.replace("{count}", String(builtinScan.warn))

1302+

.replace("{target}", params.pluginId),

1303+

);

1304+

}

1305+

}

12131306

const builtinBlocked = resolveBuiltinScanDecision({

12141307

builtinScan,

12151308

logger: params.logger,