Skip to content
Open
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
2 changes: 1 addition & 1 deletion dream-server/config/openclaw/openclaw-strix-halo.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"tools": {
"exec": {
"enabled": true,
"allowedCommands": ["ls", "cat", "grep", "find", "head", "tail", "wc"]
"allowedCommands": ["ls", "cat", "grep", "find", "head", "tail", "wc", "curl", "python3"]
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Remove python3 from exec allowlist

Allowlisting python3 defeats the purpose of the constrained allowedCommands model, because an agent can run arbitrary Python (for example via -c) and then invoke unrestricted subprocesses, network calls, and file operations that were previously blocked by command-level gating. In deployments where OpenClaw has mounted data/config volumes, this effectively expands execution from a small read-only toolset to near-arbitrary code execution inside the container, which is a significant security and containment regression.

Useful? React with 👍 / 👎.

},
"read": { "enabled": true },
"write": { "enabled": true },
Expand Down
Loading