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

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

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): avoid echoing rotated device tokens · openc...
steipete · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

2424
2525

### Fixes

2626
27+

- Gateway/device tokens: stop echoing rotated bearer tokens from shared/admin `device.token.rotate` responses while preserving the same-device token handoff needed by token-only clients before reconnect. (#66773) Thanks @MoerAI.

2728

- Agents/subagents: enforce `subagents.allowAgents` for explicit same-agent `sessions_spawn(agentId=...)` calls instead of auto-allowing requester self-targets. Fixes #72827. Thanks @oiGaDio.

2829

- ACP/sessions_spawn: let explicit `sessions_spawn(runtime="acp")` bootstrap turns run while `acp.dispatch.enabled=false` still blocks automatic ACP thread dispatch. Fixes #63591. Thanks @moeedahmed.

2930

- Gateway: skip CLI startup self-respawn for foreground gateway runs so low-memory Linux/Node 24 hosts start through the same path as direct `dist/index.js` without hanging before logs. Fixes #72720. Thanks @sign-2025.

Original file line numberDiff line numberDiff line change

@@ -102,7 +102,10 @@ caller already has.

102102

openclaw devices rotate --device <deviceId> --role operator --scope operator.read --scope operator.write

103103

```

104104
105-

Returns the new token payload as JSON.

105+

Returns rotation metadata as JSON. If the caller is rotating its own token while

106+

authenticated with that device token, the response also includes the replacement

107+

token so the client can persist it before reconnecting. Shared/admin rotations

108+

do not echo the bearer token.

106109
107110

### `openclaw devices revoke --device <id> --role <role>`

108111
Original file line numberDiff line numberDiff line change

@@ -553,6 +553,10 @@ rather than the pre-handshake defaults.

553553

reused when the client is reusing the stored per-device token.

554554

- Device tokens can be rotated/revoked via `device.token.rotate` and

555555

`device.token.revoke` (requires `operator.pairing` scope).

556+

- `device.token.rotate` returns rotation metadata. It echoes the replacement

557+

bearer token only for same-device calls that are already authenticated with

558+

that device token, so token-only clients can persist their replacement before

559+

reconnecting. Shared/admin rotations do not echo the bearer token.

556560

- Token issuance, rotation, and revocation stay bounded to the approved role set

557561

recorded in that device's pairing entry; token mutation cannot expand or

558562

target a device role that pairing approval never granted.

Original file line numberDiff line numberDiff line change

@@ -294,7 +294,6 @@ describe("deviceHandlers", () => {

294294

{

295295

deviceId: " device-1 ",

296296

role: "operator",

297-

token: "new-token",

298297

scopes: ["operator.pairing"],

299298

rotatedAtMs: 789,

300299

},

@@ -336,6 +335,37 @@ describe("deviceHandlers", () => {

336335

);

337336

});

338337
338+

it("omits rotated tokens when an admin rotates another device token", async () => {

339+

mockPairedOperatorDevice();

340+

mockRotateOperatorTokenSuccess();

341+

const opts = createOptions(

342+

"device.token.rotate",

343+

{

344+

deviceId: "device-1",

345+

role: "operator",

346+

scopes: ["operator.pairing"],

347+

},

348+

{

349+

client: createClient(["operator.admin", "operator.pairing"], "admin-device", {

350+

isDeviceTokenAuth: true,

351+

}),

352+

},

353+

);

354+
355+

await deviceHandlers["device.token.rotate"](opts);

356+
357+

expect(opts.respond).toHaveBeenCalledWith(

358+

true,

359+

{

360+

deviceId: "device-1",

361+

role: "operator",

362+

scopes: ["operator.pairing"],

363+

rotatedAtMs: 789,

364+

},

365+

undefined,

366+

);

367+

});

368+
339369

it("rejects rotating a token for a role that was never approved", async () => {

340370

mockPairedOperatorDevice();

341371

rotateDeviceTokenMock.mockResolvedValue({ ok: false, reason: "unknown-device-or-role" });

Original file line numberDiff line numberDiff line change

@@ -109,6 +109,10 @@ function deniesCrossDeviceManagement(authz: DeviceManagementAuthz): boolean {

109109

);

110110

}

111111
112+

function shouldReturnRotatedDeviceToken(authz: DeviceManagementAuthz): boolean {

113+

return Boolean(authz.callerDeviceId && authz.callerDeviceId === authz.normalizedTargetDeviceId);

114+

}

115+
112116

export const deviceHandlers: GatewayRequestHandlers = {

113117

"device.pair.list": async ({ params, respond, client }) => {

114118

if (!validateDevicePairListParams(params)) {

@@ -367,7 +371,7 @@ export const deviceHandlers: GatewayRequestHandlers = {

367371

{

368372

deviceId,

369373

role: entry.role,

370-

token: entry.token,

374+

...(shouldReturnRotatedDeviceToken(authz) ? { token: entry.token } : {}),

371375

scopes: entry.scopes,

372376

rotatedAtMs: entry.rotatedAtMs ?? entry.createdAtMs,

373377

},

Original file line numberDiff line numberDiff line change

@@ -176,13 +176,20 @@ describe("gateway device.token.rotate/revoke ownership guard (IDOR)", () => {

176176

try {

177177

await connectOk(started.ws);

178178
179-

const rotate = await rpcReq<{ token?: string }>(started.ws, "device.token.rotate", {

180-

deviceId: device.deviceId,

181-

role: "operator",

182-

scopes: ["operator.pairing"],

183-

});

179+

const rotate = await rpcReq<{ rotatedAtMs?: number; token?: string }>(

180+

started.ws,

181+

"device.token.rotate",

182+

{

183+

deviceId: device.deviceId,

184+

role: "operator",

185+

scopes: ["operator.pairing"],

186+

},

187+

);

184188

expect(rotate.ok).toBe(true);

185-

expect(rotate.payload?.token).toBeTruthy();

189+

expect(rotate.payload?.rotatedAtMs).toBeTypeOf("number");

190+

expect(rotate.payload?.token).toBeUndefined();

191+

const pairedAfterRotate = await getPairedDevice(device.deviceId);

192+

expect(pairedAfterRotate?.tokens?.operator?.token).toBeTruthy();

186193
187194

const revoke = await rpcReq<{ revokedAtMs?: number }>(started.ws, "device.token.revoke", {

188195

deviceId: device.deviceId,

Original file line numberDiff line numberDiff line change

@@ -115,7 +115,7 @@ export async function rotateDeviceToken(

115115

}

116116

try {

117117

const res = await state.client.request<{

118-

token: string;

118+

token?: string;

119119

role?: string;

120120

deviceId?: string;

121121

scopes?: Array<string>;