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

推荐订阅源

博客园_首页
爱范儿
爱范儿
罗磊的独立博客
V
V2EX
量子位
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园 - 叶小钗
小众软件
小众软件
博客园 - 【当耐特】
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell

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(media): distrust image hints for container bytes · op...
vincentkoc · 2026-05-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -17,6 +17,7 @@ Docs: https://docs.openclaw.ai

1717

### Fixes

1818
1919

- MCP plugin tools: forward host MCP `tools/call` `AbortSignal` through `createPluginToolsMcpHandlers().callTool` into plugin `tool.execute`, so host cancellation actually cancels in-flight plugin tool calls instead of letting them run to completion. (#82443) Thanks @joshavant.

20+

- Media: ignore image MIME and filename hints when bytes sniff as generic containers, so zip/octet-stream payloads mislabeled as images do not become local image media.

2021

- Update/doctor: avoid materializing `groupAllowFrom` for channel schemas that reject it, so package-swap doctor repairs do not fail on externalized Slack configs.

2122

- Gateway/media: prevent image filenames from overriding generic non-image byte sniffing, so zip/octet-stream payloads mislabeled as images are offloaded or rejected before they become inline image attachments.

2223

- Plugins/web search: downgrade stale optional provider installs to warnings so Gateway and doctor repair paths keep running after startup provider selection. Refs #82313. Thanks @crackmac.

Original file line numberDiff line numberDiff line change

@@ -78,6 +78,30 @@ describe("mime detection", () => {

7878

},

7979

expected: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",

8080

},

81+

{

82+

name: "does not let image extensions override generic zip bytes",

83+

input: async () => {

84+

const zip = new JSZip();

85+

zip.file("hello.txt", "hi");

86+

return {

87+

buffer: await zip.generateAsync({ type: "nodebuffer" }),

88+

filePath: "/tmp/fake.png",

89+

};

90+

},

91+

expected: "application/zip",

92+

},

93+

{

94+

name: "does not let image headers override generic zip bytes",

95+

input: async () => {

96+

const zip = new JSZip();

97+

zip.file("hello.txt", "hi");

98+

return {

99+

buffer: await zip.generateAsync({ type: "nodebuffer" }),

100+

headerMime: "image/png",

101+

};

102+

},

103+

expected: "application/zip",

104+

},

81105

{

82106

name: "uses extension mapping for JavaScript assets",

83107

input: async () => ({

Original file line numberDiff line numberDiff line change

@@ -190,6 +190,10 @@ function isGenericMime(mime?: string): boolean {

190190

return m === "application/octet-stream" || m === "application/zip";

191191

}

192192
193+

function isImageMime(mime?: string): boolean {

194+

return mediaKindFromMime(normalizeMimeType(mime)) === "image";

195+

}

196+
193197

async function detectMimeImpl(opts: {

194198

buffer?: Buffer;

195199

headerMime?: string | null;

@@ -200,23 +204,27 @@ async function detectMimeImpl(opts: {

200204
201205

const headerMime = normalizeMimeType(opts.headerMime);

202206

const sniffed = await sniffMime(opts.buffer);

207+

const sniffedGenericContainer = sniffed && isGenericMime(sniffed);

208+

const trustedExtMime = sniffedGenericContainer && isImageMime(extMime) ? undefined : extMime;

209+

const trustedHeaderMime =

210+

sniffedGenericContainer && isImageMime(headerMime) ? undefined : headerMime;

203211
204212

// Prefer sniffed types, but don't let generic container types override a more

205213

// specific extension mapping (e.g. XLSX vs ZIP).

206-

if (sniffed && (!isGenericMime(sniffed) || !extMime)) {

214+

if (sniffed && (!isGenericMime(sniffed) || !trustedExtMime)) {

207215

return sniffed;

208216

}

209-

if (extMime) {

210-

return extMime;

217+

if (trustedExtMime) {

218+

return trustedExtMime;

211219

}

212-

if (headerMime && !isGenericMime(headerMime)) {

213-

return headerMime;

220+

if (trustedHeaderMime && !isGenericMime(trustedHeaderMime)) {

221+

return trustedHeaderMime;

214222

}

215223

if (sniffed) {

216224

return sniffed;

217225

}

218-

if (headerMime) {

219-

return headerMime;

226+

if (trustedHeaderMime) {

227+

return trustedHeaderMime;

220228

}

221229
222230

return undefined;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,7 @@

11

import fs from "node:fs/promises";

22

import path from "node:path";

33

import { pathToFileURL } from "node:url";

4+

import JSZip from "jszip";

45

import { afterAll, beforeAll, describe, expect, it, vi } from "vitest";

56

import { resolveStateDir } from "../config/paths.js";

67

import { resolvePreferredOpenClawTmpDir } from "../infra/tmp-openclaw-dir.js";

@@ -308,6 +309,19 @@ describe("loadWebMedia", () => {

308309

expect(result.buffer.length).toBeGreaterThan(0);

309310

});

310311
312+

it("does not treat image-named generic container bytes as local image media", async () => {

313+

const zip = new JSZip();

314+

zip.file("hello.txt", "hi");

315+

const fakeImage = path.join(fixtureRoot, "fake.png");

316+

await fs.writeFile(fakeImage, await zip.generateAsync({ type: "nodebuffer" }));

317+
318+

const result = await loadWebMedia(fakeImage, createLocalWebMediaOptions());

319+
320+

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

321+

expect(result.contentType).toBe("application/zip");

322+

expect(result.fileName).toBe("fake.png");

323+

});

324+
311325

it("uses only the leaf filename from Windows-style sandbox-validated media paths", async () => {

312326

const result = await loadWebMedia(String.raw`C:\workspace\captures\tiny.png`, {

313327

maxBytes: 1024 * 1024,