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

推荐订阅源

IT之家
IT之家
H
Help Net Security
GbyAI
GbyAI
博客园_首页
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
月光博客
月光博客
美团技术团队
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
博客园 - 叶小钗
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed

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: audit and repair hooks token reuse with Gateway auth...
coygeek · 2026-06-02 · via Recent Commits to openclaw:main
1+

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

2+

import type { OpenClawConfig } from "../../../config/types.openclaw.js";

3+

import { repairHooksTokenReuseGatewayAuth } from "./hooks-token-reuse-repair.js";

4+5+

const ROTATED_HOOKS_TOKEN = "rotated-hooks-token-1234567890";

6+7+

function repair(cfg: OpenClawConfig, env: NodeJS.ProcessEnv = {}) {

8+

return repairHooksTokenReuseGatewayAuth(cfg, env, () => ROTATED_HOOKS_TOKEN);

9+

}

10+11+

describe("repairHooksTokenReuseGatewayAuth", () => {

12+

it("rotates hooks.token when it reuses active gateway token auth from env", async () => {

13+

const result = await repair(

14+

{

15+

hooks: {

16+

enabled: true,

17+

token: "shared-gateway-token-1234567890",

18+

},

19+

},

20+

{

21+

OPENCLAW_GATEWAY_TOKEN: "shared-gateway-token-1234567890",

22+

} as NodeJS.ProcessEnv,

23+

);

24+25+

expect(result.config.hooks?.token).toBe(ROTATED_HOOKS_TOKEN);

26+

expect(result.changes).toContain(

27+

"Rotated hooks.token because it reused active Gateway shared-secret auth. Update external hook senders to use the new hooks.token.",

28+

);

29+

});

30+31+

it("rotates hooks.token when it reuses gateway password auth", async () => {

32+

const result = await repair({

33+

gateway: {

34+

auth: {

35+

mode: "password",

36+

password: "shared-gateway-password-1234567890", // pragma: allowlist secret

37+

},

38+

},

39+

hooks: {

40+

enabled: true,

41+

token: "shared-gateway-password-1234567890",

42+

},

43+

});

44+45+

expect(result.config.hooks?.token).toBe(ROTATED_HOOKS_TOKEN);

46+

});

47+48+

it("rotates hooks.token when it reuses gateway password auth from a SecretRef", async () => {

49+

const result = await repair(

50+

{

51+

secrets: {

52+

providers: {

53+

default: { source: "env" },

54+

},

55+

},

56+

gateway: {

57+

auth: {

58+

mode: "password",

59+

password: { source: "env", provider: "default", id: "GW_PASSWORD" },

60+

},

61+

},

62+

hooks: {

63+

enabled: true,

64+

token: "shared-gateway-password-1234567890",

65+

},

66+

},

67+

{

68+

GW_PASSWORD: "shared-gateway-password-1234567890", // pragma: allowlist secret

69+

} as NodeJS.ProcessEnv,

70+

);

71+72+

expect(result.config.hooks?.token).toBe(ROTATED_HOOKS_TOKEN);

73+

});

74+75+

it("does not abort when active gateway auth SecretRef is unavailable", async () => {

76+

const cfg = {

77+

secrets: {

78+

providers: {

79+

default: { source: "env" },

80+

},

81+

},

82+

gateway: {

83+

auth: {

84+

mode: "password",

85+

password: { source: "env", provider: "default", id: "MISSING_GW_PASSWORD" },

86+

},

87+

},

88+

hooks: {

89+

enabled: true,

90+

token: "shared-gateway-password-1234567890",

91+

},

92+

} satisfies OpenClawConfig;

93+94+

await expect(repair(cfg, {} as NodeJS.ProcessEnv)).resolves.toEqual({

95+

config: cfg,

96+

changes: [],

97+

});

98+

});

99+100+

it("does not execute gateway auth SecretRefs during repair", async () => {

101+

const cfg = {

102+

secrets: {

103+

providers: {

104+

vault: {

105+

source: "exec",

106+

command: "node",

107+

args: ["-e", "process.stdout.write('shared-gateway-password-1234567890')"],

108+

},

109+

},

110+

},

111+

gateway: {

112+

auth: {

113+

mode: "password",

114+

password: { source: "exec", provider: "vault", id: "GW_PASSWORD" },

115+

},

116+

},

117+

hooks: {

118+

enabled: true,

119+

token: "shared-gateway-password-1234567890",

120+

},

121+

} satisfies OpenClawConfig;

122+123+

await expect(repair(cfg, {} as NodeJS.ProcessEnv)).resolves.toEqual({

124+

config: cfg,

125+

changes: [],

126+

});

127+

});

128+129+

it("rotates hooks.token when it reuses trusted-proxy local password fallback", async () => {

130+

const result = await repair({

131+

gateway: {

132+

auth: {

133+

mode: "trusted-proxy",

134+

trustedProxy: { userHeader: "x-forwarded-user" },

135+

password: "trusted-proxy-local-password-1234567890", // pragma: allowlist secret

136+

},

137+

},

138+

hooks: {

139+

enabled: true,

140+

token: "trusted-proxy-local-password-1234567890",

141+

},

142+

});

143+144+

expect(result.config.hooks?.token).toBe(ROTATED_HOOKS_TOKEN);

145+

});

146+147+

it("rotates hooks.token when it reuses trusted-proxy password auth from a SecretRef", async () => {

148+

const result = await repair(

149+

{

150+

secrets: {

151+

providers: {

152+

default: { source: "env" },

153+

},

154+

},

155+

gateway: {

156+

auth: {

157+

mode: "trusted-proxy",

158+

trustedProxy: { userHeader: "x-forwarded-user" },

159+

password: { source: "env", provider: "default", id: "GW_PASSWORD" },

160+

},

161+

},

162+

hooks: {

163+

enabled: true,

164+

token: "trusted-proxy-local-password-1234567890",

165+

},

166+

},

167+

{

168+

GW_PASSWORD: "trusted-proxy-local-password-1234567890", // pragma: allowlist secret

169+

} as NodeJS.ProcessEnv,

170+

);

171+172+

expect(result.config.hooks?.token).toBe(ROTATED_HOOKS_TOKEN);

173+

});

174+175+

it("does not rotate disabled hooks or distinct hook tokens", async () => {

176+

const disabled = {

177+

gateway: {

178+

auth: {

179+

mode: "token",

180+

token: "shared-gateway-token-1234567890",

181+

},

182+

},

183+

hooks: {

184+

enabled: false,

185+

token: "shared-gateway-token-1234567890",

186+

},

187+

} satisfies OpenClawConfig;

188+

const distinct = {

189+

gateway: {

190+

auth: {

191+

mode: "token",

192+

token: "shared-gateway-token-1234567890",

193+

},

194+

},

195+

hooks: {

196+

enabled: true,

197+

token: "distinct-hooks-token-1234567890",

198+

},

199+

} satisfies OpenClawConfig;

200+201+

await expect(repair(disabled)).resolves.toEqual({ config: disabled, changes: [] });

202+

await expect(repair(distinct)).resolves.toEqual({ config: distinct, changes: [] });

203+

});

204+

});