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

推荐订阅源

人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
月光博客
月光博客
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
小众软件
小众软件
量子位
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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(status): bound deep docker audit probes (#85476) · op...
giodl73-repo · 2026-05-23 · via Recent Commits to openclaw:main

@@ -39,6 +39,8 @@ type ExecDockerRawFn = (

3939

opts?: { allowFailure?: boolean; input?: Buffer | string; signal?: AbortSignal },

4040

) => Promise<import("../agents/sandbox/docker.js").ExecDockerRawResult>;

414142+

const DEFAULT_SANDBOX_BROWSER_DOCKER_PROBE_TIMEOUT_MS = 5000;

43+4244

type CodeSafetySummaryCache = Map<string, Promise<unknown>>;

4345

let skillsModulePromise: Promise<typeof import("../agents/skills.js")> | undefined;

4446

let configModulePromise: Promise<typeof import("../config/config.js")> | undefined;

@@ -274,13 +276,63 @@ function normalizeDockerLabelValue(raw: string | undefined): string | null {

274276

return trimmed;

275277

}

276278277-

async function listSandboxBrowserContainers(

278-

execDockerRawFn: ExecDockerRawFn,

279-

): Promise<string[] | null> {

279+

class DockerProbeTimeoutError extends Error {

280+

constructor(timeoutMs: number) {

281+

super(`Docker probe timed out after ${timeoutMs}ms`);

282+

this.name = "DockerProbeTimeoutError";

283+

}

284+

}

285+286+

function normalizeDockerProbeTimeoutMs(timeoutMs: number | undefined): number {

287+

if (Number.isFinite(timeoutMs) && timeoutMs !== undefined) {

288+

return Math.max(250, Math.floor(timeoutMs));

289+

}

290+

return DEFAULT_SANDBOX_BROWSER_DOCKER_PROBE_TIMEOUT_MS;

291+

}

292+293+

async function withDockerProbeTimeout<T>(

294+

timeoutMs: number,

295+

run: (signal: AbortSignal) => Promise<T>,

296+

): Promise<T> {

297+

const controller = new AbortController();

298+

let timeout: NodeJS.Timeout | undefined;

299+

let timedOut = false;

300+

const timeoutPromise = new Promise<never>((_, reject) => {

301+

timeout = setTimeout(() => {

302+

timedOut = true;

303+

controller.abort();

304+

reject(new DockerProbeTimeoutError(timeoutMs));

305+

}, timeoutMs);

306+

});

307+

try {

308+

return await Promise.race([run(controller.signal), timeoutPromise]);

309+

} catch (err) {

310+

if (timedOut || controller.signal.aborted) {

311+

throw new DockerProbeTimeoutError(timeoutMs);

312+

}

313+

throw err;

314+

} finally {

315+

if (timeout) {

316+

clearTimeout(timeout);

317+

}

318+

}

319+

}

320+321+

function isDockerProbeTimeoutError(error: unknown): boolean {

322+

return error instanceof DockerProbeTimeoutError;

323+

}

324+325+

async function listSandboxBrowserContainers(params: {

326+

execDockerRawFn: ExecDockerRawFn;

327+

timeoutMs: number;

328+

onTimeout?: () => void;

329+

}): Promise<string[] | null> {

280330

try {

281-

const result = await execDockerRawFn(

282-

["ps", "-a", "--filter", "label=openclaw.sandboxBrowser=1", "--format", "{{.Names}}"],

283-

{ allowFailure: true },

331+

const result = await withDockerProbeTimeout(params.timeoutMs, (signal) =>

332+

params.execDockerRawFn(

333+

["ps", "-a", "--filter", "label=openclaw.sandboxBrowser=1", "--format", "{{.Names}}"],

334+

{ allowFailure: true, signal },

335+

),

284336

);

285337

if (result.code !== 0) {

286338

return null;

@@ -290,24 +342,31 @@ async function listSandboxBrowserContainers(

290342

.split(/\r?\n/)

291343

.map((entry) => entry.trim())

292344

.filter(Boolean);

293-

} catch {

345+

} catch (err) {

346+

if (isDockerProbeTimeoutError(err)) {

347+

params.onTimeout?.();

348+

}

294349

return null;

295350

}

296351

}

297352298353

async function readSandboxBrowserHashLabels(params: {

299354

containerName: string;

300355

execDockerRawFn: ExecDockerRawFn;

356+

timeoutMs: number;

357+

onTimeout?: () => void;

301358

}): Promise<{ configHash: string | null; epoch: string | null } | null> {

302359

try {

303-

const result = await params.execDockerRawFn(

304-

[

305-

"inspect",

306-

"-f",

307-

'{{ index .Config.Labels "openclaw.configHash" }}\t{{ index .Config.Labels "openclaw.browserConfigEpoch" }}',

308-

params.containerName,

309-

],

310-

{ allowFailure: true },

360+

const result = await withDockerProbeTimeout(params.timeoutMs, (signal) =>

361+

params.execDockerRawFn(

362+

[

363+

"inspect",

364+

"-f",

365+

'{{ index .Config.Labels "openclaw.configHash" }}\t{{ index .Config.Labels "openclaw.browserConfigEpoch" }}',

366+

params.containerName,

367+

],

368+

{ allowFailure: true, signal },

369+

),

311370

);

312371

if (result.code !== 0) {

313372

return null;

@@ -317,7 +376,10 @@ async function readSandboxBrowserHashLabels(params: {

317376

configHash: normalizeDockerLabelValue(hashRaw),

318377

epoch: normalizeDockerLabelValue(epochRaw),

319378

};

320-

} catch {

379+

} catch (err) {

380+

if (isDockerProbeTimeoutError(err)) {

381+

params.onTimeout?.();

382+

}

321383

return null;

322384

}

323385

}

@@ -349,11 +411,16 @@ function isLoopbackPublishHost(host: string): boolean {

349411

async function readSandboxBrowserPortMappings(params: {

350412

containerName: string;

351413

execDockerRawFn: ExecDockerRawFn;

414+

timeoutMs: number;

415+

onTimeout?: () => void;

352416

}): Promise<string[] | null> {

353417

try {

354-

const result = await params.execDockerRawFn(["port", params.containerName], {

355-

allowFailure: true,

356-

});

418+

const result = await withDockerProbeTimeout(params.timeoutMs, (signal) =>

419+

params.execDockerRawFn(["port", params.containerName], {

420+

allowFailure: true,

421+

signal,

422+

}),

423+

);

357424

if (result.code !== 0) {

358425

return null;

359426

}

@@ -362,21 +429,37 @@ async function readSandboxBrowserPortMappings(params: {

362429

.split(/\r?\n/)

363430

.map((entry) => entry.trim())

364431

.filter(Boolean);

365-

} catch {

432+

} catch (err) {

433+

if (isDockerProbeTimeoutError(err)) {

434+

params.onTimeout?.();

435+

}

366436

return null;

367437

}

368438

}

369439370440

export async function collectSandboxBrowserHashLabelFindings(params?: {

371441

execDockerRawFn?: ExecDockerRawFn;

442+

timeoutMs?: number;

372443

}): Promise<SecurityAuditFinding[]> {

373444

const findings: SecurityAuditFinding[] = [];

445+

const timeoutMs = normalizeDockerProbeTimeoutMs(params?.timeoutMs);

446+

let timedOut = false;

447+

const markTimedOut = () => {

448+

timedOut = true;

449+

};

374450

const [execFn, browserHashEpoch] = await Promise.all([

375451

params?.execDockerRawFn ? Promise.resolve(params.execDockerRawFn) : loadExecDockerRaw(),

376452

loadSandboxBrowserSecurityHashEpoch(),

377453

]);

378-

const containers = await listSandboxBrowserContainers(execFn);

454+

const containers = await listSandboxBrowserContainers({

455+

execDockerRawFn: execFn,

456+

timeoutMs,

457+

onTimeout: markTimedOut,

458+

});

379459

if (!containers || containers.length === 0) {

460+

if (timedOut) {

461+

findings.push(buildSandboxBrowserDockerProbeTimeoutFinding(timeoutMs));

462+

}

380463

return findings;

381464

}

382465

@@ -385,7 +468,15 @@ export async function collectSandboxBrowserHashLabelFindings(params?: {

385468

const nonLoopbackPublished: string[] = [];

386469387470

for (const containerName of containers) {

388-

const labels = await readSandboxBrowserHashLabels({ containerName, execDockerRawFn: execFn });

471+

const labels = await readSandboxBrowserHashLabels({

472+

containerName,

473+

execDockerRawFn: execFn,

474+

timeoutMs,

475+

onTimeout: markTimedOut,

476+

});

477+

if (timedOut) {

478+

break;

479+

}

389480

if (!labels) {

390481

continue;

391482

}

@@ -398,7 +489,12 @@ export async function collectSandboxBrowserHashLabelFindings(params?: {

398489

const portMappings = await readSandboxBrowserPortMappings({

399490

containerName,

400491

execDockerRawFn: execFn,

492+

timeoutMs,

493+

onTimeout: markTimedOut,

401494

});

495+

if (timedOut) {

496+

break;

497+

}

402498

if (!portMappings?.length) {

403499

continue;

404500

}

@@ -449,9 +545,26 @@ export async function collectSandboxBrowserHashLabelFindings(params?: {

449545

});

450546

}

451547548+

if (timedOut) {

549+

findings.push(buildSandboxBrowserDockerProbeTimeoutFinding(timeoutMs));

550+

}

551+452552

return findings;

453553

}

454554555+

function buildSandboxBrowserDockerProbeTimeoutFinding(timeoutMs: number): SecurityAuditFinding {

556+

return {

557+

checkId: "sandbox.browser_container.docker_probe_timeout",

558+

severity: "warn",

559+

title: "Sandbox browser Docker audit probe timed out",

560+

detail:

561+

`Docker did not answer within ${timeoutMs}ms while checking sandbox browser containers. ` +

562+

"OpenClaw skipped any remaining sandbox browser container drift checks for this status run.",

563+

remediation:

564+

"Retry after Docker is responsive, or recreate sandbox browser containers if drift is suspected.",

565+

};

566+

}

567+455568

export async function collectIncludeFilePermFindings(params: {

456569

configSnapshot: ConfigFileSnapshot;

457570

env?: NodeJS.ProcessEnv;