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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

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(gateway): harden WS pairing locality · openclaw/openc...
steipete · 2026-04-22 · via Recent Commits to openclaw:main

5 files changed

+

65

-

9

lines changed

Original file line numberDiff line numberDiff line change

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

1818
1919

### Fixes

2020
21+

- Gateway/pairing: treat any forwarded-header evidence (`Forwarded`, `X-Forwarded-*`, or `X-Real-IP`) as proxied WebSocket traffic before pairing locality checks, so reverse-proxy topologies cannot use the loopback shared-secret helper auto-pairing path.

2122

- Gateway/pairing webchat: render `/pair qr` replies as structured media instead of raw markdown text, preserve inline reply threading and silent-control handling on media replies, avoid persisting sensitive QR images into transcript history, and keep local webchat media embedding behind internal-only trust markers. (#70047) Thanks @BunsDev.

2223

- Codex harness: default app-server runs to unchained local execution, so OpenAI heartbeats can use network and shell tools without stalling behind native Codex approvals or the workspace-write sandbox.

2324

- Codex harness: apply the GPT-5 behavior and heartbeat prompt overlay to native Codex app-server runs, so `codex/gpt-5.x` sessions get the same follow-through, tool-use, and proactive heartbeat guidance as OpenAI GPT-5 runs.

Original file line numberDiff line numberDiff line change

@@ -4,6 +4,8 @@ import {

44

assertGatewayAuthConfigured,

55

authorizeGatewayConnect,

66

authorizeHttpGatewayConnect,

7+

hasForwardedRequestHeaders,

8+

isLocalDirectRequest,

79

resolveEffectiveSharedGatewayAuth,

810

authorizeWsControlUiGatewayConnect,

911

resolveGatewayAuth,

@@ -137,6 +139,32 @@ describe("gateway auth", () => {

137139

});

138140

});

139141
142+

it.each([

143+

{ name: "Forwarded", headers: { forwarded: "for=203.0.113.10;proto=https" } },

144+

{ name: "X-Forwarded-For", headers: { "x-forwarded-for": "203.0.113.10" } },

145+

{ name: "X-Forwarded-Proto", headers: { "x-forwarded-proto": "https" } },

146+

{ name: "X-Forwarded-Host", headers: { "x-forwarded-host": "gateway.example" } },

147+

{ name: "X-Real-IP", headers: { "x-real-ip": "203.0.113.10" } },

148+

])("treats $name as forwarded request evidence", ({ headers }) => {

149+

const req = {

150+

socket: { remoteAddress: "127.0.0.1" },

151+

headers,

152+

} as never;

153+
154+

expect(hasForwardedRequestHeaders(req)).toBe(true);

155+

expect(isLocalDirectRequest(req)).toBe(false);

156+

});

157+
158+

it("keeps clean loopback requests eligible for direct-local handling", () => {

159+

const req = {

160+

socket: { remoteAddress: "127.0.0.1" },

161+

headers: { host: "127.0.0.1:18789" },

162+

} as never;

163+
164+

expect(hasForwardedRequestHeaders(req)).toBe(false);

165+

expect(isLocalDirectRequest(req)).toBe(true);

166+

});

167+
140168

it("returns null for non-shared gateway auth modes", () => {

141169

expect(

142170

resolveEffectiveSharedGatewayAuth({

Original file line numberDiff line numberDiff line change

@@ -117,24 +117,29 @@ function resolveTailscaleClientIp(req?: IncomingMessage): string | undefined {

117117

});

118118

}

119119
120-

export function isLocalDirectRequest(

121-

req?: IncomingMessage,

122-

_trustedProxies?: string[],

123-

_allowRealIpFallback = false,

124-

): boolean {

120+

export function hasForwardedRequestHeaders(req?: IncomingMessage): boolean {

125121

if (!req) {

126122

return false;

127123

}

128124
129-

const hasForwarded = Boolean(

125+

return Boolean(

130126

req.headers?.forwarded ||

131127

req.headers?.["x-forwarded-for"] ||

132128

req.headers?.["x-forwarded-proto"] ||

133129

req.headers?.["x-real-ip"] ||

134130

req.headers?.["x-forwarded-host"],

135131

);

132+

}

136133
137-

if (!hasForwarded) {

134+

export function isLocalDirectRequest(

135+

req?: IncomingMessage,

136+

_trustedProxies?: string[],

137+

_allowRealIpFallback = false,

138+

): boolean {

139+

if (!req) {

140+

return false;

141+

}

142+

if (!hasForwardedRequestHeaders(req)) {

138143

return isLoopbackAddress(req.socket?.remoteAddress);

139144

}

140145

return false;

Original file line numberDiff line numberDiff line change

@@ -519,6 +519,28 @@ describe("handshake auth helpers", () => {

519519

).toBe("remote");

520520

});

521521
522+

it("keeps shared-secret loopback clients remote when forwarded headers were present", () => {

523+

const connectParams = {

524+

client: {

525+

id: GATEWAY_CLIENT_IDS.NODE_HOST,

526+

mode: GATEWAY_CLIENT_MODES.NODE,

527+

},

528+

} as ConnectParams;

529+
530+

expect(

531+

resolvePairingLocality({

532+

connectParams,

533+

isLocalClient: false,

534+

requestHost: "127.0.0.1:18789",

535+

remoteAddress: "127.0.0.1",

536+

hasProxyHeaders: true,

537+

hasBrowserOriginHeader: false,

538+

sharedAuthOk: true,

539+

authMethod: "token",

540+

}),

541+

).toBe("remote");

542+

});

543+
522544

it("allows silent scope-upgrade for shared_secret_loopback_local", () => {

523545

expect(

524546

shouldAllowSilentLocalPairing({

Original file line numberDiff line numberDiff line change

@@ -51,7 +51,7 @@ import { resolveRuntimeServiceVersion } from "../../../version.js";

5151

import type { AuthRateLimiter } from "../../auth-rate-limit.js";

5252

import type { ResolvedGatewayAuth } from "../../auth.js";

5353

import type { GatewayAuthResult } from "../../auth.js";

54-

import { isLocalDirectRequest } from "../../auth.js";

54+

import { hasForwardedRequestHeaders, isLocalDirectRequest } from "../../auth.js";

5555

import {

5656

buildCanvasScopedHostUrl,

5757

CANVAS_CAPABILITY_TTL_MS,

@@ -267,7 +267,7 @@ export function attachGatewayWsMessageHandler(params: {

267267

// the connection as local. This prevents auth bypass when running behind a reverse

268268

// proxy without proper configuration - the proxy's loopback connection would otherwise

269269

// cause all external requests to be treated as trusted local clients.

270-

const hasProxyHeaders = Boolean(forwardedFor || realIp);

270+

const hasProxyHeaders = hasForwardedRequestHeaders(upgradeReq);

271271

const remoteIsTrustedProxy = isTrustedProxyAddress(remoteAddr, trustedProxies);

272272

const hasUntrustedProxyHeaders = hasProxyHeaders && !remoteIsTrustedProxy;

273273

const hostIsLocalish = isLocalishHost(requestHost);