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

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point 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(security): tighten telegram dm audit coverage · openc...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -24,6 +24,36 @@ function collectInvalidTelegramAllowFromEntries(params: { entries: unknown; targ

2424

}

2525

}

262627+

function appendInvalidTelegramAllowFromFinding(

28+

findings: Array<{

29+

checkId: string;

30+

severity: "info" | "warn" | "critical";

31+

title: string;

32+

detail: string;

33+

remediation?: string;

34+

}>,

35+

invalidTelegramAllowFromEntries: Set<string>,

36+

) {

37+

if (invalidTelegramAllowFromEntries.size === 0) {

38+

return;

39+

}

40+

const examples = Array.from(invalidTelegramAllowFromEntries).slice(0, 5);

41+

const more =

42+

invalidTelegramAllowFromEntries.size > examples.length

43+

? ` (+${invalidTelegramAllowFromEntries.size - examples.length} more)`

44+

: "";

45+

findings.push({

46+

checkId: "channels.telegram.allowFrom.invalid_entries",

47+

severity: "warn",

48+

title: "Telegram allowlist contains non-numeric entries",

49+

detail:

50+

"Telegram sender authorization requires numeric Telegram user IDs. " +

51+

`Found non-numeric allowFrom entries: ${examples.join(", ")}${more}.`,

52+

remediation:

53+

"Replace @username entries with numeric Telegram user IDs (use setup to resolve), then re-run the audit.",

54+

});

55+

}

56+2757

export async function collectTelegramSecurityAuditFindings(params: {

2858

cfg: OpenClawConfig;

2959

accountId?: string | null;

@@ -36,13 +66,20 @@ export async function collectTelegramSecurityAuditFindings(params: {

3666

detail: string;

3767

remediation?: string;

3868

}> = [];

39-

if (params.cfg.commands?.text === false) {

40-

return findings;

41-

}

42694370

const telegramCfg = params.account.config ?? {};

4471

const accountId =

4572

normalizeOptionalString(params.accountId) ?? params.account.accountId ?? "default";

73+

const invalidTelegramAllowFromEntries = new Set<string>();

74+

collectInvalidTelegramAllowFromEntries({

75+

entries: Array.isArray(telegramCfg.allowFrom) ? telegramCfg.allowFrom : [],

76+

target: invalidTelegramAllowFromEntries,

77+

});

78+

if (params.cfg.commands?.text === false) {

79+

appendInvalidTelegramAllowFromFinding(findings, invalidTelegramAllowFromEntries);

80+

return findings;

81+

}

82+4683

const defaultGroupPolicy = params.cfg.channels?.defaults?.groupPolicy;

4784

const groupPolicy =

4885

(telegramCfg.groupPolicy as string | undefined) ?? defaultGroupPolicy ?? "allowlist";

@@ -51,6 +88,7 @@ export async function collectTelegramSecurityAuditFindings(params: {

5188

const groupAccessPossible =

5289

groupPolicy === "open" || (groupPolicy === "allowlist" && groupsConfigured);

5390

if (!groupAccessPossible) {

91+

appendInvalidTelegramAllowFromFinding(findings, invalidTelegramAllowFromEntries);

5492

return findings;

5593

}

5694

@@ -60,7 +98,6 @@ export async function collectTelegramSecurityAuditFindings(params: {

6098

const storeHasWildcard = storeAllowFrom.some(

6199

(value) => (normalizeOptionalString(value) ?? "") === "*",

62100

);

63-

const invalidTelegramAllowFromEntries = new Set<string>();

64101

collectInvalidTelegramAllowFromEntries({

65102

entries: storeAllowFrom,

66103

target: invalidTelegramAllowFromEntries,

@@ -75,10 +112,6 @@ export async function collectTelegramSecurityAuditFindings(params: {

75112

entries: groupAllowFrom,

76113

target: invalidTelegramAllowFromEntries,

77114

});

78-

collectInvalidTelegramAllowFromEntries({

79-

entries: Array.isArray(telegramCfg.allowFrom) ? telegramCfg.allowFrom : [],

80-

target: invalidTelegramAllowFromEntries,

81-

});

8211583116

let anyGroupOverride = false;

84117

if (groups) {

@@ -119,23 +152,7 @@ export async function collectTelegramSecurityAuditFindings(params: {

119152

const hasAnySenderAllowlist =

120153

storeAllowFrom.length > 0 || groupAllowFrom.length > 0 || anyGroupOverride;

121154122-

if (invalidTelegramAllowFromEntries.size > 0) {

123-

const examples = Array.from(invalidTelegramAllowFromEntries).slice(0, 5);

124-

const more =

125-

invalidTelegramAllowFromEntries.size > examples.length

126-

? ` (+${invalidTelegramAllowFromEntries.size - examples.length} more)`

127-

: "";

128-

findings.push({

129-

checkId: "channels.telegram.allowFrom.invalid_entries",

130-

severity: "warn",

131-

title: "Telegram allowlist contains non-numeric entries",

132-

detail:

133-

"Telegram sender authorization requires numeric Telegram user IDs. " +

134-

`Found non-numeric allowFrom entries: ${examples.join(", ")}${more}.`,

135-

remediation:

136-

"Replace @username entries with numeric Telegram user IDs (use setup to resolve), then re-run the audit.",

137-

});

138-

}

155+

appendInvalidTelegramAllowFromFinding(findings, invalidTelegramAllowFromEntries);

139156140157

if (storeHasWildcard || groupAllowFromHasWildcard) {

141158

findings.push({