Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,6 @@ The following endpoint groups are allowed by default:
- `/usr/local/bin/openclaw`, `/usr/local/bin/npm`, `/usr/local/bin/node`
- All methods, all paths

* - `telegram`
- `api.telegram.org:443`
- Any binary
- GET, POST on `/bot*/**`

:::

All endpoints use TLS termination and are enforced at port 443.
Expand Down
5 changes: 0 additions & 5 deletions docs/reference/network-policies.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,6 @@ The following endpoint groups are allowed by default:
- `/usr/local/bin/openclaw`, `/usr/local/bin/npm`, `/usr/local/bin/node`
- All methods, all paths

* - `telegram`
- `api.telegram.org:443`
- Any binary
- GET, POST on `/bot*/**`

:::

All endpoints use TLS termination and are enforced at port 443.
Expand Down
46 changes: 0 additions & 46 deletions nemoclaw-blueprint/policies/openclaw-sandbox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -207,49 +207,3 @@ network_policies:
- { path: /usr/local/bin/openclaw }
- { path: /usr/local/bin/npm }
- { path: /usr/local/bin/node }

# ── Messaging — pre-allowed for OpenClaw agent notifications ────
# Restricted to node processes to prevent arbitrary data exfiltration
# via curl, wget, python, etc. (See: #272)
telegram:
name: telegram
endpoints:
- host: api.telegram.org
port: 443
protocol: rest
enforcement: enforce
tls: terminate
rules:
- allow: { method: GET, path: "/bot*/**" }
- allow: { method: POST, path: "/bot*/**" }
- allow: { method: GET, path: "/file/bot*/**" }
binaries:
- { path: /usr/local/bin/node }

discord:
name: discord
endpoints:
- host: discord.com
port: 443
protocol: rest
enforcement: enforce
tls: terminate
rules:
- allow: { method: GET, path: "/**" }
- allow: { method: POST, path: "/**" }
# WebSocket gateway — must use access: full (CONNECT tunnel) instead
# of protocol: rest. The proxy's HTTP idle timeout (~2 min) kills
# long-lived WebSocket connections; a CONNECT tunnel avoids
# HTTP-level timeouts entirely. Matches presets/discord.yaml. See #409.
- host: gateway.discord.gg
port: 443
access: full
- host: cdn.discordapp.com
port: 443
protocol: rest
enforcement: enforce
tls: terminate
rules:
- allow: { method: GET, path: "/**" }
binaries:
- { path: /usr/local/bin/node }
Loading