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

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
C
Check Point Blog
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
IT之家
IT之家
B
Blog
博客园_首页
量子位
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
J
Java Code Geeks
H
Help Net Security
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
D
DataBreaches.Net
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News

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(ui): keep chat usable during session loading · opencl...
steipete · 2026-05-31 · via Recent Commits to openclaw:main
1+

const PAYMENT_CREDENTIAL_KEYS =

2+

"card[-_]?number|card[-_]?cvc|card[-_]?cvv|cvc|cvv|security[-_]?code|securityCode|payment[-_]?credential|paymentCredential|shared[-_]?payment[-_]?token|sharedPaymentToken";

3+4+

const SECRET_DETAIL_PATTERNS: RegExp[] = [

5+

/\b[A-Z0-9_]*(?:KEY|TOKEN|SECRET|PASSWORD|PASSWD|CARD[_-]?NUMBER|CARD[_-]?CVC|CARD[_-]?CVV|CVC|CVV|SECURITY[_-]?CODE|PAYMENT[_-]?CREDENTIAL|SHARED[_-]?PAYMENT[_-]?TOKEN)\b\s*[=:]\s*(["']?)([^\s"'\\&<>]+)\1/gi,

6+

/\b[A-Z0-9_]*(?:KEY|TOKEN|SECRET|PASSWORD|PASSWD|CARD[_-]?NUMBER|CARD[_-]?CVC|CARD[_-]?CVV|CVC|CVV|SECURITY[_-]?CODE|PAYMENT[_-]?CREDENTIAL|SHARED[_-]?PAYMENT[_-]?TOKEN)\b\s*[=:]\s*\\+(["'])([^\s"'\\&<>]+)\\+\1/gi,

7+

new RegExp(

8+

`[?&](?:access[-_]?token|auth[-_]?token|hook[-_]?token|refresh[-_]?token|api[-_]?key|client[-_]?secret|token|key|secret|password|pass|passwd|auth|signature|${PAYMENT_CREDENTIAL_KEYS})=([^&\\s"'<>]+)`,

9+

"gi",

10+

),

11+

/"(?:apiKey|token|secret|password|passwd|accessToken|refreshToken|cardNumber|card_number|cardCvc|card_cvc|cardCvv|card_cvv|cvc|cvv|securityCode|security_code|paymentCredential|payment_credential|sharedPaymentToken|shared_payment_token)"\s*:\s*"([^"]+)"/gi,

12+

/(^|[\s,{])["']?(?:api[-_]key|access[-_]token|refresh[-_]token|authToken|auth[-_]token|clientSecret|client[-_]secret|appSecret|app[-_]secret)["']?\s*[:=]\s*(["'])([^"'\r\n]+)\2/gi,

13+

/(^|[\s,{])["']?(?:authorization|proxy-authorization|cookie|set-cookie|x-api-key|x-auth-token)["']?\s*[:=]\s*(["'])([^"'\r\n]+)\2/gi,

14+

new RegExp(

15+

`--(?:api[-_]?key|hook[-_]?token|token|secret|password|passwd|${PAYMENT_CREDENTIAL_KEYS})\\s+(["']?)([^\\s"']+)\\1`,

16+

"gi",

17+

),

18+

/Authorization\s*[:=]\s*Bearer\s+([A-Za-z0-9._\-+=]+)/gi,

19+

/Authorization\s*[:=]\s*Basic\s+([A-Za-z0-9+/=]+)/gi,

20+

/(?:X-OpenClaw-Token|x-pomerium-jwt-assertion|X-Api-Key|X-Auth-Token)\s*[:=]\s*([^\s"',;]+)/gi,

21+

/\bBearer\s+([A-Za-z0-9._\-+=]{18,})\b/gi,

22+

new RegExp(

23+

`(^|[\\s,;])(?:access_token|refresh_token|auth[-_]?token|api[-_]?key|client[-_]?secret|app[-_]?secret|token|secret|password|passwd|${PAYMENT_CREDENTIAL_KEYS})=([^\\s&#]+)`,

24+

"gi",

25+

),

26+

/-----BEGIN [A-Z ]*PRIVATE KEY-----[\s\S]+?-----END [A-Z ]*PRIVATE KEY-----/g,

27+

/\b(sk-[A-Za-z0-9_-]{8,})\b/g,

28+

/\b(ghp_[A-Za-z0-9]{20,})\b/g,

29+

/\b(github_pat_[A-Za-z0-9_]{20,})\b/g,

30+

/\b(xox[baprs]-[A-Za-z0-9-]{10,})\b/g,

31+

/\b(xapp-[A-Za-z0-9-]{10,})\b/g,

32+

/\b(gsk_[A-Za-z0-9_-]{10,})\b/g,

33+

/\b(AIza[0-9A-Za-z\-_]{20,})\b/g,

34+

/\b(ya29\.[0-9A-Za-z_\-./+=]{10,})\b/g,

35+

/\b(1\/\/0[0-9A-Za-z_\-./+=]{10,})\b/g,

36+

/\b(eyJ[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]{10,}\.[A-Za-z0-9_-]{10,})\b/g,

37+

/\b(pplx-[A-Za-z0-9_-]{10,})\b/g,

38+

/\b(npm_[A-Za-z0-9]{10,})\b/g,

39+

/\b(AKID[A-Za-z0-9]{10,})\b/g,

40+

/\b(LTAI[A-Za-z0-9]{10,})\b/g,

41+

/\b(hf_[A-Za-z0-9]{10,})\b/g,

42+

/\b(r8_[A-Za-z0-9]{10,})\b/g,

43+

/\bbot(\d{6,}:[A-Za-z0-9_-]{20,})\b/g,

44+

/\b(\d{6,}:[A-Za-z0-9_-]{20,})\b/g,

45+

];

46+47+

function redactToken(value: string): string {

48+

if (value.length <= 10) {

49+

return "***";

50+

}

51+

return `${value.slice(0, 6)}...${value.slice(-4)}`;

52+

}

53+54+

function redactPemBlock(block: string): string {

55+

const lines = block.split(/\r?\n/).filter(Boolean);

56+

if (lines.length < 2) {

57+

return "***";

58+

}

59+

return `${lines[0]}\n...redacted...\n${lines[lines.length - 1]}`;

60+

}

61+62+

export function redactToolDetail(detail: string): string {

63+

let redacted = detail;

64+

for (const pattern of SECRET_DETAIL_PATTERNS) {

65+

redacted = redacted.replace(pattern, (...args: string[]) => {

66+

const match = args[0] ?? "";

67+

if (match.includes("PRIVATE KEY-----")) {

68+

return redactPemBlock(match);

69+

}

70+

const groups = args.slice(1, -2);

71+

const token = groups.findLast((group) => typeof group === "string" && group.length > 0);

72+

return token ? match.replace(token, redactToken(token)) : "***";

73+

});

74+

}

75+

return redacted;

76+

}