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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
L
LangChain Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 叶小钗
I
InfoQ
MyScale Blog
MyScale Blog
H
Help Net Security
月光博客
月光博客
Vercel News
Vercel News
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
GbyAI
GbyAI
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky

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
Allow validated text document media sends · openclaw/open...
2026-06-01 · via Recent Commits to openclaw:main

@@ -597,18 +597,17 @@ describe("loadWebMedia", () => {

597597

}

598598

});

599599600-

it("rejects host-read text files outside local roots", async () => {

601-

const secretFile = path.join(fixtureRoot, "secret.txt");

602-

await fs.writeFile(secretFile, "secret", "utf8");

603-

await expectLoadWebMediaErrorCode(

604-

loadWebMedia(secretFile, {

605-

maxBytes: 1024 * 1024,

606-

localRoots: "any",

607-

readFile: async (filePath) => await fs.readFile(filePath),

608-

hostReadCapability: true,

609-

}),

610-

"path-not-allowed",

611-

);

600+

it("allows validated host-read TXT files", async () => {

601+

const txtFile = path.join(fixtureRoot, "notes.txt");

602+

await fs.writeFile(txtFile, "plain text\n", "utf8");

603+

const result = await loadWebMedia(txtFile, {

604+

maxBytes: 1024 * 1024,

605+

localRoots: "any",

606+

readFile: async (filePath) => await fs.readFile(filePath),

607+

hostReadCapability: true,

608+

});

609+

expect(result.kind).toBe("document");

610+

expect(result.contentType).toBe("text/plain");

612611

});

613612614613

it("rejects renamed host-read text files even when the extension looks allowed", async () => {

@@ -771,40 +770,51 @@ describe("loadWebMedia", () => {

771770

{

772771

label: "ZIP",

773772

fileName: "archive.zip",

773+

body: Buffer.from([0x50, 0x4b, 0x03, 0x04]),

774774

contentType: "application/zip",

775-

buffer: Buffer.from([0x50, 0x4b, 0x03, 0x04]),

776775

},

777776

{

778777

label: "gzip",

779778

fileName: "archive.gz",

779+

body: Buffer.from([0x1f, 0x8b, 0x08, 0x00, 0, 0, 0, 0, 0, 0x03]),

780780

contentType: "application/gzip",

781-

buffer: Buffer.from([0x1f, 0x8b, 0x08, 0x00, 0, 0, 0, 0, 0, 0x03]),

782781

},

783782

{

784783

label: "tar",

785784

fileName: "archive.tar",

786-

contentType: "application/x-tar",

787-

buffer: (() => {

785+

body: (() => {

788786

const buffer = Buffer.alloc(512);

789787

buffer.write("ustar", 257, "ascii");

790788

return buffer;

791789

})(),

790+

contentType: "application/x-tar",

792791

},

793792

{

794793

label: "7z",

795794

fileName: "archive.7z",

795+

body: Buffer.from([0x37, 0x7a, 0xbc, 0xaf, 0x27, 0x1c, 0, 4]),

796796

contentType: "application/x-7z-compressed",

797-

buffer: Buffer.from([0x37, 0x7a, 0xbc, 0xaf, 0x27, 0x1c, 0, 4]),

798797

},

799-

])("allows host-read $label files", async ({ fileName, contentType, buffer }) => {

800-

const archiveFile = path.join(fixtureRoot, fileName);

801-

await fs.writeFile(archiveFile, buffer);

802-

const result = await loadWebMedia(archiveFile, {

803-

maxBytes: 1024 * 1024,

804-

localRoots: "any",

805-

readFile: async (filePath) => await fs.readFile(filePath),

806-

hostReadCapability: true,

807-

});

798+

{

799+

label: "JSON",

800+

fileName: "data.json",

801+

body: '{"ok":true}\n',

802+

contentType: "application/json",

803+

},

804+

{

805+

label: "YAML",

806+

fileName: "config.yaml",

807+

body: "ok: true\n",

808+

contentType: "application/yaml",

809+

},

810+

{

811+

label: "YML",

812+

fileName: "config.yml",

813+

body: "ok: true\n",

814+

contentType: "application/yaml",

815+

},

816+

])("allows host-read $label files", async ({ fileName, body, contentType }) => {

817+

const result = await loadDocumentWithHostRead(fileName, body);

808818

expect(result.kind).toBe("document");

809819

expect(result.contentType).toBe(contentType);

810820

});

@@ -829,7 +839,11 @@ describe("loadWebMedia", () => {

829839

{ label: "CSV", fileName: "opaque.csv" },

830840

{ label: "HTML", fileName: "opaque.html" },

831841

{ label: "Markdown", fileName: "opaque.md" },

832-

])("rejects opaque non-NUL binary data disguised as %s", async ({ fileName }) => {

842+

{ label: "TXT", fileName: "opaque.txt" },

843+

{ label: "JSON", fileName: "opaque.json" },

844+

{ label: "YAML", fileName: "opaque.yaml" },

845+

{ label: "YML", fileName: "opaque.yml" },

846+

])("rejects opaque non-NUL binary data disguised as $label", async ({ fileName }) => {

833847

const fakeTextFile = path.join(fixtureRoot, fileName);

834848

const opaqueBinary = Buffer.alloc(9000);

835849

for (let i = 0; i < opaqueBinary.length; i += 1) {