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

推荐订阅源

Vercel News
Vercel News
B
Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园_首页
C
Check Point Blog
博客园 - 【当耐特】
美团技术团队
Last Week in AI
Last Week in AI
A
About on SuperTechFans
雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
J
Java Code Geeks
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
F
Fortinet All Blogs

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: reject invalid discovery ports · openclaw/openclaw@5...
steipete · 2026-05-29 · via Recent Commits to openclaw:main

@@ -37,7 +37,13 @@ export function resolveGatewayDiscoveryEndpoint(

3737

): GatewayDiscoveryResolvedEndpoint | null {

3838

const host = beacon.host?.trim();

3939

const port = beacon.port;

40-

if (!host || typeof port !== "number" || !Number.isFinite(port) || port <= 0) {

40+

if (

41+

!host ||

42+

typeof port !== "number" ||

43+

!Number.isSafeInteger(port) ||

44+

port <= 0 ||

45+

port > MAX_TCP_PORT

46+

) {

4147

return null;

4248

}

4349

const gatewayTls = beacon.gatewayTls === true;

@@ -70,6 +76,7 @@ export type GatewayBonjourDiscoverOpts = {

70767177

const DEFAULT_TIMEOUT_MS = 2000;

7278

const GATEWAY_SERVICE_TYPE = "_openclaw-gw._tcp";

79+

const MAX_TCP_PORT = 65_535;

73807481

function decodeDnsSdEscapes(value: string): string {

7582

let decoded = false;

@@ -146,9 +153,9 @@ function parseDigSrv(stdout: string): { host: string; port: number } | null {

146153

if (parts.length < 4) {

147154

return null;

148155

}

149-

const port = Number.parseInt(parts[2] ?? "", 10);

156+

const port = parsePortOrUndefined(parts[2]);

150157

const hostRaw = parts[3] ?? "";

151-

if (!Number.isFinite(port) || port <= 0) {

158+

if (port === undefined) {

152159

return null;

153160

}

154161

const host = hostRaw.replace(/\.$/, "");

@@ -193,11 +200,12 @@ function parseTailscaleStatusIPv4s(stdout: string): string[] {

193200

return uniqueStrings(out);

194201

}

195202196-

function parseIntOrNull(value: string | undefined): number | undefined {

203+

function parsePortOrUndefined(value: string | undefined): number | undefined {

197204

if (!value) {

198205

return undefined;

199206

}

200-

return parseStrictInteger(value);

207+

const parsed = parseStrictInteger(value);

208+

return parsed !== undefined && parsed > 0 && parsed <= MAX_TCP_PORT ? parsed : undefined;

201209

}

202210203211

function parseTxtTokens(tokens: string[]): Record<string, string> {

@@ -246,12 +254,12 @@ function parseDnsSdResolve(stdout: string, instanceName: string): GatewayBonjour

246254

}

247255248256

if (line.includes("can be reached at")) {

249-

const match = line.match(/can be reached at\s+([^\s:]+):(\d+)/i);

257+

const match = line.match(/can be reached at\s+([^\s:]+):([^\s]+)/i);

250258

if (match?.[1]) {

251259

beacon.host = match[1].replace(/\.$/, "");

252260

}

253261

if (match?.[2]) {

254-

beacon.port = parseIntOrNull(match[2]);

262+

beacon.port = parsePortOrUndefined(match[2]);

255263

}

256264

continue;

257265

}

@@ -275,8 +283,8 @@ function parseDnsSdResolve(stdout: string, instanceName: string): GatewayBonjour

275283

if (txt.cliPath) {

276284

beacon.cliPath = txt.cliPath;

277285

}

278-

beacon.gatewayPort = parseIntOrNull(txt.gatewayPort);

279-

beacon.sshPort = parseIntOrNull(txt.sshPort);

286+

beacon.gatewayPort = parsePortOrUndefined(txt.gatewayPort);

287+

beacon.sshPort = parsePortOrUndefined(txt.sshPort);

280288

if (txt.gatewayTls) {

281289

const raw = normalizeOptionalLowercaseString(txt.gatewayTls);

282290

beacon.gatewayTls = raw === "1" || raw === "true" || raw === "yes";

@@ -450,8 +458,8 @@ async function discoverWideAreaViaTailnetDns(

450458

host: srvParsed.host,

451459

port: srvParsed.port,

452460

txt: Object.keys(txtMap).length ? txtMap : undefined,

453-

gatewayPort: parseIntOrNull(txtMap.gatewayPort),

454-

sshPort: parseIntOrNull(txtMap.sshPort),

461+

gatewayPort: parsePortOrUndefined(txtMap.gatewayPort),

462+

sshPort: parsePortOrUndefined(txtMap.sshPort),

455463

tailnetDns: txtMap.tailnetDns || undefined,

456464

cliPath: txtMap.cliPath || undefined,

457465

};

@@ -516,7 +524,7 @@ function parseAvahiBrowse(stdout: string): GatewayBonjourBeacon[] {

516524

if (trimmed.startsWith("port =")) {

517525

const match = trimmed.match(/port\s*=\s*\[(\d+)\]/);

518526

if (match?.[1]) {

519-

current.port = parseIntOrNull(match[1]);

527+

current.port = parsePortOrUndefined(match[1]);

520528

}

521529

continue;

522530

}

@@ -537,8 +545,8 @@ function parseAvahiBrowse(stdout: string): GatewayBonjourBeacon[] {

537545

if (txt.cliPath) {

538546

current.cliPath = txt.cliPath;

539547

}

540-

current.gatewayPort = parseIntOrNull(txt.gatewayPort);

541-

current.sshPort = parseIntOrNull(txt.sshPort);

548+

current.gatewayPort = parsePortOrUndefined(txt.gatewayPort);

549+

current.sshPort = parsePortOrUndefined(txt.sshPort);

542550

if (txt.gatewayTls) {

543551

const raw = normalizeOptionalLowercaseString(txt.gatewayTls);

544552

current.gatewayTls = raw === "1" || raw === "true" || raw === "yes";