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

推荐订阅源

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
docs: add security FAQ guidance · openclaw/openclaw@718cc1b
steipete · 2026-05-23 · via Recent Commits to openclaw:main

@@ -1793,6 +1793,71 @@ lives on the [Models FAQ](/help/faq-models).

1793179317941794

</Accordion>

179517951796+

<Accordion title="Is OpenClaw less safe because it uses TypeScript/Node instead of Rust/WASM?">

1797+

Language and runtime matter, but they are not the main risk for a personal

1798+

agent. The practical OpenClaw risks are gateway exposure, who can message the

1799+

bot, prompt injection, tool scope, credential handling, browser access, exec

1800+

access, and third-party skill or plugin trust.

1801+1802+

Rust and WASM can provide stronger isolation for some classes of code, but

1803+

they do not solve prompt injection, bad allowlists, public gateway exposure,

1804+

overbroad tools, or a browser profile that is already logged in to sensitive

1805+

accounts. Treat those as the primary controls:

1806+1807+

- keep the Gateway private or authenticated

1808+

- use pairing and allowlists for DMs and groups

1809+

- deny or sandbox risky tools for untrusted inputs

1810+

- install only trusted plugins and skills

1811+

- run `openclaw security audit --deep` after config changes

1812+1813+

Details: [Security](/gateway/security), [Sandboxing](/gateway/sandboxing).

1814+1815+

</Accordion>

1816+1817+

<Accordion title="I saw reports about exposed OpenClaw instances. What should I check?">

1818+

First check your actual deployment:

1819+1820+

```bash

1821+

openclaw security audit --deep

1822+

openclaw gateway status

1823+

```

1824+1825+

A safer baseline is:

1826+1827+

- Gateway bound to `loopback`, or exposed only through authenticated private

1828+

access such as a tailnet, SSH tunnel, token/password auth, or a correctly

1829+

configured trusted proxy

1830+

- DMs in `pairing` or `allowlist` mode

1831+

- groups allowlisted and mention-gated unless every member is trusted

1832+

- high-risk tools (`exec`, `browser`, `gateway`, `cron`) denied or tightly

1833+

scoped for agents that read untrusted content

1834+

- sandboxing enabled where tool execution needs a smaller blast radius

1835+1836+

Public binds without auth, open DMs/groups with tools, and exposed browser

1837+

control are the findings to fix first. Details:

1838+

[Security audit checklist](/gateway/security#security-audit-checklist).

1839+1840+

</Accordion>

1841+1842+

<Accordion title="Are ClawHub skills and third-party plugins safe to install?">

1843+

Treat third-party skills and plugins as code you are choosing to trust.

1844+

ClawHub skill pages expose scan state before install, and OpenClaw plugin

1845+

install/update flows run built-in dangerous-code checks, but scans are not a

1846+

complete security boundary.

1847+1848+

Safer pattern:

1849+1850+

- prefer trusted authors and pinned versions

1851+

- read the skill or plugin before enabling it

1852+

- keep plugin and skill allowlists narrow

1853+

- run untrusted-input workflows in a sandbox with minimal tools

1854+

- avoid giving third-party code broad filesystem, exec, browser, or secret access

1855+1856+

Details: [Skills](/tools/skills), [Plugins](/tools/plugin),

1857+

[Security](/gateway/security).

1858+1859+

</Accordion>

1860+17961861

<Accordion title="Should my bot have its own email, GitHub account, or phone number?">

17971862

Yes, for most setups. Isolating the bot with separate accounts and phone numbers

17981863

reduces the blast radius if something goes wrong. This also makes it easier to rotate