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

推荐订阅源

V
Visual Studio Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园 - Franky
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
B
Blog RSS Feed
云风的 BLOG
云风的 BLOG
小众软件
小众软件
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
C
Check Point Blog
WordPress大学
WordPress大学
博客园 - 【当耐特】
博客园 - 司徒正美
D
Docker

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(qa-channel): reject non-http attachment urls · opencl...
vincentkoc · 2026-04-24 · via Recent Commits to openclaw:main

File tree

  • extensions/qa-channel/src

Original file line numberDiff line numberDiff line change

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

88
99

### Fixes

1010
11+

- QA channel/security: reject non-HTTP(S) inbound attachment URLs before media fetch, and log rejected schemes so suspicious or misconfigured payloads are visible during debugging. (#70708) Thanks @vincentkoc.

1112

- Teams/security: require shared Bot Framework audience tokens to name the configured Teams app via verified `appid` or `azp`, blocking cross-bot token replay on the global audience. (#70724) Thanks @vincentkoc.

1213

- Plugins/startup: resolve bundled plugin Jiti loads relative to the target plugin module instead of the central loader, so Bun global installs no longer hang while discovering bundled image providers. (#70073) Thanks @yidianyiko.

1314

- Anthropic/CLI security: stop Claude CLI backend defaults from forcing `bypassPermissions`, and strip malformed permission-mode overrides instead of silently falling back to a bypass. (#70723) Thanks @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,12 @@

1+

import { describe, expect, it } from "vitest";

2+

import { isHttpMediaUrl } from "./inbound.js";

3+
4+

describe("isHttpMediaUrl", () => {

5+

it("accepts only http and https urls", () => {

6+

expect(isHttpMediaUrl("https://example.com/image.png")).toBe(true);

7+

expect(isHttpMediaUrl("http://example.com/image.png")).toBe(true);

8+

expect(isHttpMediaUrl("file:///etc/passwd")).toBe(false);

9+

expect(isHttpMediaUrl("/etc/passwd")).toBe(false);

10+

expect(isHttpMediaUrl("data:text/plain;base64,SGVsbG8=")).toBe(false);

11+

});

12+

});

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,15 @@ import { buildQaTarget, sendQaBusMessage, type QaBusMessage } from "./bus-client

99

import { getQaChannelRuntime } from "./runtime.js";

1010

import type { CoreConfig, ResolvedQaChannelAccount } from "./types.js";

1111
12+

export function isHttpMediaUrl(value: string): boolean {

13+

try {

14+

const parsed = new URL(value);

15+

return parsed.protocol === "http:" || parsed.protocol === "https:";

16+

} catch {

17+

return false;

18+

}

19+

}

20+
1221

async function resolveQaInboundMediaPayload(attachments: QaBusMessage["attachments"]) {

1322

if (!Array.isArray(attachments) || attachments.length === 0) {

1423

return {};

@@ -33,6 +42,12 @@ async function resolveQaInboundMediaPayload(attachments: QaBusMessage["attachmen

3342

continue;

3443

}

3544

if (typeof attachment.url === "string" && attachment.url.trim()) {

45+

if (!isHttpMediaUrl(attachment.url)) {

46+

console.warn(

47+

`[qa-channel] inbound attachment URL rejected (non-http scheme): ${attachment.url}`,

48+

);

49+

continue;

50+

}

3651

const saved = await saveMediaSource(attachment.url, undefined, "inbound");

3752

mediaList.push({

3853

path: saved.path,