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

推荐订阅源

L
LangChain Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
D
Docker
WordPress大学
WordPress大学
罗磊的独立博客
J
Java Code Geeks
博客园 - 【当耐特】
博客园 - 司徒正美
雷峰网
雷峰网
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
B
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(backup): cap verify manifest extraction · openclaw/op...
vincentkoc · 2026-05-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -282,6 +282,21 @@ describe("backupVerifyCommand", () => {

282282

);

283283

});

284284
285+

it("rejects oversized manifest entries without retaining the full body", async () => {

286+

await createArchiveWithManifestContent(

287+

{

288+

tempPrefix: "openclaw-backup-huge-manifest-",

289+

manifestContent: "x".repeat(1024 * 1024 + 1),

290+

},

291+

async (archivePath) => {

292+

const runtime = createBackupVerifyRuntime();

293+

await expect(backupVerifyCommand(runtime, { archive: archivePath })).rejects.toThrow(

294+

/Backup manifest exceeds 1048576 byte limit/,

295+

);

296+

},

297+

);

298+

});

299+
285300

it("rejects unsafe archive paths", async () => {

286301

for (const { tempPrefix, archivePath, error } of [

287302

{

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import { readStringValue } from "../shared/string-coerce.js";

55

import { isRecord, resolveUserPath } from "../utils.js";

66
77

const WINDOWS_ABSOLUTE_ARCHIVE_PATH_RE = /^[A-Za-z]:[\\/]/;

8+

const MAX_MANIFEST_BYTES = 1024 * 1024;

89
910

type BackupManifestAsset = {

1011

kind: string;

@@ -193,7 +194,7 @@ async function extractManifest(params: {

193194

archivePath: string;

194195

manifestEntryPath: string;

195196

}): Promise<string> {

196-

let manifestContentPromise: Promise<string> | undefined;

197+

let manifestContentPromise: Promise<{ content?: string; error?: Error }> | undefined;

197198

await tar.t({

198199

file: params.archivePath,

199200

gzip: true,

@@ -203,14 +204,44 @@ async function extractManifest(params: {

203204

return;

204205

}

205206
206-

manifestContentPromise = new Promise<string>((resolve, reject) => {

207+

manifestContentPromise = new Promise<{ content?: string; error?: Error }>((resolve) => {

207208

const chunks: Buffer[] = [];

209+

let totalBytes = 0;

210+

let exceededLimit = false;

211+

let settled = false;

212+

const settle = (result: { content?: string; error?: Error }) => {

213+

if (settled) {

214+

return;

215+

}

216+

settled = true;

217+

resolve(result);

218+

};

208219

entry.on("data", (chunk: Buffer | string) => {

209-

chunks.push(Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk));

220+

if (exceededLimit) {

221+

return;

222+

}

223+

const buffer = Buffer.isBuffer(chunk) ? chunk : Buffer.from(chunk);

224+

totalBytes += buffer.byteLength;

225+

if (totalBytes > MAX_MANIFEST_BYTES) {

226+

exceededLimit = true;

227+

chunks.length = 0;

228+

return;

229+

}

230+

chunks.push(buffer);

231+

});

232+

entry.on("error", (error) => {

233+

settle({

234+

error: error instanceof Error ? error : new Error(String(error)),

235+

});

210236

});

211-

entry.on("error", reject);

212237

entry.on("end", () => {

213-

resolve(Buffer.concat(chunks).toString("utf8"));

238+

if (exceededLimit) {

239+

settle({

240+

error: new Error(`Backup manifest exceeds ${MAX_MANIFEST_BYTES} byte limit.`),

241+

});

242+

return;

243+

}

244+

settle({ content: Buffer.concat(chunks, totalBytes).toString("utf8") });

214245

});

215246

});

216247

},

@@ -219,7 +250,11 @@ async function extractManifest(params: {

219250

if (!manifestContentPromise) {

220251

throw new Error(`Archive is missing manifest entry: ${params.manifestEntryPath}`);

221252

}

222-

return await manifestContentPromise;

253+

const result = await manifestContentPromise;

254+

if (result.error) {

255+

throw result.error;

256+

}

257+

return result.content ?? "";

223258

}

224259
225260

function isRootManifestEntry(entryPath: string): boolean {