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

推荐订阅源

爱范儿
爱范儿
WordPress大学
WordPress大学
C
Check Point Blog
GbyAI
GbyAI
U
Unit 42
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Hugging Face - Blog
Hugging Face - Blog
Vercel News
Vercel News
博客园 - 【当耐特】
美团技术团队
小众软件
小众软件
S
SegmentFault 最新的问题
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The Cloudflare Blog
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio 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
test: cover trusted-proxy secret surfaces · openclaw/open...
steipete · 2026-04-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -139,7 +139,8 @@ export function createGatewayCredentialPlan(params: {

139139

gateway?.tailscale?.mode === "serve" || gateway?.tailscale?.mode === "funnel";

140140

const remoteConfiguredSurface = remoteMode || remoteUrlConfigured || tailscaleRemoteExposure;

141141

const remoteTokenFallbackActive = localTokenCanWin && !envToken && !localToken.configured;

142-

const remotePasswordFallbackActive = !envPassword && !localPassword.configured && passwordCanWin;

142+

const remotePasswordFallbackActive =

143+

authMode !== "trusted-proxy" && !envPassword && !localPassword.configured && passwordCanWin;

143144
144145

return {

145146

configuredMode: gateway?.mode === "remote" ? "remote" : "local",

Original file line numberDiff line numberDiff line change

@@ -309,6 +309,28 @@ describe("resolveGatewayCredentialsFromConfig", () => {

309309

});

310310

});

311311
312+

it("does not use remote password as trusted-proxy local fallback", () => {

313+

const resolved = resolveGatewayCredentialsFromConfig({

314+

cfg: cfg({

315+

gateway: {

316+

mode: "local",

317+

auth: {

318+

mode: "trusted-proxy",

319+

},

320+

remote: {

321+

password: "remote-password", // pragma: allowlist secret

322+

},

323+

},

324+

}),

325+

env: {} as NodeJS.ProcessEnv,

326+

});

327+
328+

expect(resolved).toEqual({

329+

token: undefined,

330+

password: undefined,

331+

});

332+

});

333+
312334

it("keeps local credentials ahead of remote fallback in local mode", () => {

313335

const resolved = resolveGatewayCredentialsFromConfig({

314336

cfg: cfg({

Original file line numberDiff line numberDiff line change

@@ -110,7 +110,9 @@ function resolveLocalGatewayCredentials(params: {

110110

: params.plan.remoteToken.value;

111111

const fallbackPassword = params.plan.localPassword.configured

112112

? params.plan.localPassword.value

113-

: params.plan.remotePassword.value;

113+

: params.plan.authMode === "trusted-proxy"

114+

? undefined

115+

: params.plan.remotePassword.value;

114116

const localResolved = resolveGatewayCredentialsFromValues({

115117

configToken: fallbackToken,

116118

configPassword: fallbackPassword,

Original file line numberDiff line numberDiff line change

@@ -87,6 +87,23 @@ describe("evaluateGatewayAuthSurfaceStates", () => {

8787

});

8888

});

8989
90+

it("marks gateway.auth.password active when trusted-proxy mode is explicit", () => {

91+

const states = evaluate({

92+

gateway: {

93+

auth: {

94+

mode: "trusted-proxy",

95+

password: envRef("GW_AUTH_PASSWORD"),

96+

},

97+

},

98+

} as OpenClawConfig);

99+
100+

expect(states["gateway.auth.password"]).toMatchObject({

101+

hasSecretRef: true,

102+

active: true,

103+

reason: "no token source can win, so password auth can win.",

104+

});

105+

});

106+
90107

it("marks gateway.auth.password inactive when env token is configured", () => {

91108

const states = evaluate(

92109

{

@@ -197,4 +214,24 @@ describe("evaluateGatewayAuthSurfaceStates", () => {

197214

reason: 'password auth cannot win with gateway.auth.mode="token".',

198215

});

199216

});

217+
218+

it("marks gateway.remote.password inactive as a trusted-proxy local fallback", () => {

219+

const states = evaluate({

220+

gateway: {

221+

mode: "local",

222+

auth: {

223+

mode: "trusted-proxy",

224+

},

225+

remote: {

226+

password: envRef("GW_REMOTE_PASSWORD"),

227+

},

228+

},

229+

} as OpenClawConfig);

230+
231+

expect(states["gateway.remote.password"]).toMatchObject({

232+

hasSecretRef: true,

233+

active: false,

234+

reason: "remote password fallback is not active.",

235+

});

236+

});

200237

});

Original file line numberDiff line numberDiff line change

@@ -19,6 +19,20 @@ async function expectInactiveGatewayPassword(config: unknown): Promise<void> {

1919

expect(snapshot.warnings.map((warning) => warning.path)).toContain("gateway.auth.password");

2020

}

2121
22+

async function expectActiveGatewayPassword(config: unknown): Promise<void> {

23+

const snapshot = await prepareSecretsRuntimeSnapshot({

24+

config: asConfig(config),

25+

env: {

26+

GATEWAY_PASSWORD_REF: "resolved-gateway-password",

27+

},

28+

agentDirs: ["/tmp/openclaw-agent-main"],

29+

loadAuthStore: () => ({ version: 1, profiles: {} }),

30+

});

31+
32+

expect(snapshot.config.gateway?.auth?.password).toBe("resolved-gateway-password");

33+

expect(snapshot.warnings.map((warning) => warning.path)).not.toContain("gateway.auth.password");

34+

}

35+
2236

describe("secrets runtime gateway local surfaces", () => {

2337

it("treats gateway.remote refs as inactive when local auth credentials are configured", async () => {

2438

const snapshot = await prepareSecretsRuntimeSnapshot({

@@ -139,8 +153,8 @@ describe("secrets runtime gateway local surfaces", () => {

139153

).rejects.toThrow(/MISSING_GATEWAY_TOKEN_REF/);

140154

});

141155
142-

it("treats gateway.auth.password ref as inactive when auth mode is trusted-proxy", async () => {

143-

await expectInactiveGatewayPassword({

156+

it("treats gateway.auth.password ref as active when auth mode is trusted-proxy", async () => {

157+

await expectActiveGatewayPassword({

144158

gateway: {

145159

auth: {

146160

mode: "trusted-proxy",