Choose the exposure pattern
Prefer the narrowest pattern that satisfies the workflow.
Avoid direct public port-forwarding to the Gateway. If public access is
required, put an identity-aware proxy in front of it and make the proxy the
only network path to the Gateway.
Pre-flight inventory
Record these before changing bind, proxy, Tailscale, or channel policy:- Gateway host, OS user, and state directory (default
~/.openclaw). - Gateway URL and bind mode (
gateway.bind; default port18789). - Auth mode, token/password source, or trusted proxy identity source.
- Every enabled channel and whether it accepts DMs, groups, or webhooks.
- Agents reachable from non-local senders.
- Tool profile, sandbox mode, and elevated tool policy for each reachable agent.
- External credentials available to those agents.
- Backup location for
~/.openclaw/openclaw.jsonand credentials.
Baseline checks
Run before opening access:checkId means and its fix key.
For remote CLI validation, pass credentials explicitly:
Minimum safe baseline
Use this shape as the starting point for exposed deployments:tools.exec.security: "deny" blocks all exec calls, including benign
diagnostics. If diagnostics or low-risk commands are required, relax this only
after choosing the specific senders, agents, commands, and approval mode that
match your threat model.
DM and group exposure
Messaging channels are untrusted input surfaces. Before allowing DMs or groups:- Prefer
dmPolicy: "pairing"or a strictallowFromlist overdmPolicy: "open". - Do not combine
"*"allowlists with broad tool access. - Require mentions in groups unless the room is tightly controlled.
- Set
session.dmScope: "per-channel-peer"(or"per-account-channel-peer"for multi-account channels) when multiple people can DM the bot, so DM sessions don’t share context. - Route shared channels to agents with minimal tools and no personal credentials.
Reverse proxy checks
For identity-aware proxies:- The proxy must authenticate users before forwarding to the Gateway.
- Firewall or network policy must block direct access to the Gateway port.
gateway.trustedProxiesmust list only the proxy source IPs.- The proxy must strip or overwrite client-supplied identity and forwarding headers.
- Set
gateway.auth.trustedProxy.allowUserswhen the proxy serves more than one audience. - Use
gateway.auth.trustedProxy.allowLoopbackonly for a same-host proxy where local processes are trusted and the proxy owns the identity headers.
openclaw security audit --deep after proxy changes. Trusted-proxy
findings are high-signal because the proxy becomes the authentication
boundary.
Tool and sandbox review
Before exposing an agent to remote senders:- Confirm which sessions run on host versus sandbox.
- Deny or require approval for host exec.
- Keep elevated tools disabled unless a specific, trusted sender needs them.
- Avoid browser, canvas, node, cron, gateway, and session-spawn tools for open or semi-open messaging surfaces.
- Keep bind mounts narrow; avoid credential, home, Docker socket, and system paths.
- Use separate gateways, OS users, or hosts for materially different trust boundaries.
Post-change validation
After each exposure change:- Re-run
openclaw security audit --deep. - Confirm a successful authorized connection succeeds.
- Confirm an unauthorized sender or browser session is denied.
- Confirm logs redact secrets.
- Confirm DM/group routing reaches only the intended agent.
- Confirm high-impact tools ask for approval or are denied.
- Document the accepted residual warnings.
Rollback plan
If the Gateway may be overexposed:- Stop public forwarding, Tailscale Funnel, or reverse proxy routes.
- Rotate Gateway tokens/passwords and affected integration credentials.
- Remove
"*"and unexpected senders from allowlists. - Review recent audit logs, run history, tool calls, and config changes.
- Re-run
openclaw security audit --deep. - Re-enable access with the narrowest pattern that satisfies the workflow.
Review checklist
- Gateway remains loopback-only unless there is a documented reason.
- Non-loopback access has auth, firewalling, and no public direct route.
- Trusted-proxy deployments have strict proxy IPs and header controls.
- DMs use pairing or allowlists, not open access by default.
- Groups require mentions or explicit allowlists.
- Shared channels do not reach personal credentials.
- Non-main sessions run in sandbox mode.
- Host exec and elevated tools are denied or approval-gated.
- Logs redact secrets.
- Critical audit findings are resolved.
- Rollback steps are tested and documented.