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

推荐订阅源

D
Docker
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
爱范儿
爱范儿
罗磊的独立博客
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
N
Netflix TechBlog - Medium
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
U
Unit 42
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
H
Help Net Security
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理

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
feat(gateway): emit security events for auth handshakes ·...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main

@@ -4,6 +4,11 @@ import { beforeEach, describe, expect, it, vi } from "vitest";

44

import type { WebSocket } from "ws";

55

import { PROTOCOL_VERSION } from "../../../../packages/gateway-protocol/src/index.js";

66

import type { HealthSummary } from "../../../commands/health.types.js";

7+

import {

8+

onInternalDiagnosticEvent,

9+

resetDiagnosticEventsForTest,

10+

type DiagnosticSecurityEvent,

11+

} from "../../../infra/diagnostic-events.js";

712

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

813

import { getOperatorApprovalRuntimeToken } from "../../operator-approval-runtime-token.js";

914

import { handleGatewayRequest } from "../../server-methods.js";

@@ -153,6 +158,19 @@ function createSetCloseCauseMock() {

153158

return vi.fn<SetCloseCause>();

154159

}

155160161+

function captureSecurityEvents(): {

162+

events: DiagnosticSecurityEvent[];

163+

stop: () => void;

164+

} {

165+

const events: DiagnosticSecurityEvent[] = [];

166+

const stop = onInternalDiagnosticEvent((event, metadata) => {

167+

if (metadata.trusted && event.type === "security.event") {

168+

events.push(event);

169+

}

170+

});

171+

return { events, stop };

172+

}

173+156174

function attachGatewayHarness(options: {

157175

connId: string;

158176

connectNonce: string;

@@ -263,6 +281,7 @@ function attachGatewayHarness(options: {

263281264282

describe("attachGatewayWsMessageHandler post-connect health refresh", () => {

265283

beforeEach(() => {

284+

resetDiagnosticEventsForTest();

266285

vi.clearAllMocks();

267286

});

268287

@@ -403,32 +422,122 @@ describe("attachGatewayWsMessageHandler post-connect health refresh", () => {

403422

refreshHealthSnapshot,

404423

isClosed,

405424

});

425+

const captured = captureSecurityEvents();

426+427+

try {

428+

harness.sendConnect("connect-1", {

429+

minProtocol: PROTOCOL_VERSION,

430+

maxProtocol: PROTOCOL_VERSION,

431+

client: {

432+

id: "openclaw-control-ui",

433+

version: "dev",

434+

platform: "test",

435+

mode: "ui",

436+

},

437+

role: "operator",

438+

caps: [],

439+

});

406440407-

harness.sendConnect("connect-1", {

408-

minProtocol: PROTOCOL_VERSION,

409-

maxProtocol: PROTOCOL_VERSION,

410-

client: {

411-

id: "openclaw-control-ui",

412-

version: "dev",

413-

platform: "test",

414-

mode: "ui",

415-

},

416-

role: "operator",

417-

caps: [],

418-

});

419-420-

await vi.waitFor(() => {

421-

expect(harness.socketSend).toHaveBeenCalled();

422-

});

441+

await vi.waitFor(() => {

442+

expect(harness.socketSend).toHaveBeenCalled();

443+

});

444+

} finally {

445+

captured.stop();

446+

}

423447

const hello = JSON.parse(harness.socketSend.mock.calls.at(0)?.[0] ?? "{}") as { ok?: boolean };

424448

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

449+

expect(captured.events).toHaveLength(1);

450+

expect(captured.events[0]).toMatchObject({

451+

action: "gateway.auth.succeeded",

452+

outcome: "success",

453+

severity: "low",

454+

actor: { kind: "operator", role: "operator" },

455+

target: { kind: "gateway", name: "websocket" },

456+

policy: { id: "gateway.websocket-auth", decision: "allow" },

457+

control: { id: "gateway.ws.connect", family: "auth" },

458+

attributes: {

459+

auth_mode: "none",

460+

auth_method: "none",

461+

auth_provided: "none",

462+

client_mode: "ui",

463+

has_device_identity: false,

464+

scope_count: 0,

465+

},

466+

});

425467426468

await vi.waitFor(() => {

427469

expect(refreshHealthSnapshot).toHaveBeenCalledWith({ probe: false });

428470

});

429471

resolveRefresh?.();

430472

});

431473474+

it("emits a security event for rejected gateway auth", async () => {

475+

const close = createCloseMock();

476+

const harness = attachGatewayHarness({

477+

connId: "conn-auth-failed",

478+

connectNonce: "nonce-auth-failed",

479+

requestHost: "gateway.example.com:18789",

480+

remoteAddr: "203.0.113.50",

481+

resolvedAuth: {

482+

mode: "token",

483+

token: "gateway-token",

484+

allowTailscale: false,

485+

},

486+

close,

487+

});

488+

const captured = captureSecurityEvents();

489+490+

try {

491+

harness.sendConnect("connect-auth-failed", {

492+

minProtocol: PROTOCOL_VERSION,

493+

maxProtocol: PROTOCOL_VERSION,

494+

client: {

495+

id: "gateway-client",

496+

version: "dev",

497+

platform: "test",

498+

mode: "backend",

499+

},

500+

role: "operator",

501+

scopes: ["operator.admin"],

502+

caps: [],

503+

auth: { token: "wrong-token" },

504+

});

505+506+

await vi.waitFor(() => {

507+

expect(close).toHaveBeenCalledWith(1008, expect.stringContaining("unauthorized"));

508+

});

509+

} finally {

510+

captured.stop();

511+

}

512+513+

expect(captured.events).toHaveLength(1);

514+

expect(captured.events[0]).toMatchObject({

515+

action: "gateway.auth.failed",

516+

outcome: "denied",

517+

severity: "medium",

518+

reason: "token_mismatch",

519+

actor: { kind: "operator", role: "operator" },

520+

target: { kind: "gateway", name: "websocket" },

521+

policy: {

522+

id: "gateway.websocket-auth",

523+

decision: "deny",

524+

reason: "token_mismatch",

525+

},

526+

control: { id: "gateway.ws.connect", family: "auth" },

527+

attributes: {

528+

auth_mode: "token",

529+

auth_method: "token",

530+

auth_provided: "token",

531+

client_mode: "backend",

532+

has_device_identity: false,

533+

scope_count: 0,

534+

rate_limited: false,

535+

},

536+

});

537+

expect(JSON.stringify(captured.events)).not.toContain("wrong-token");

538+

expect(JSON.stringify(captured.events)).not.toContain("gateway-token");

539+

});

540+432541

it("does not mark local backend self-pairing clients as approval runtimes", async () => {

433542

const refreshHealthSnapshot = vi.fn<GatewayRequestContext["refreshHealthSnapshot"]>(async () =>

434543

createHealthSummary(),