CVE-2026-66297: Unescaped deployment environment variables in generated setup commands
Improper Neutralization of Special Elements used in an OS Command (OS Command Injection) vulnerability in livebook-dev livebook allows command injection into generated deployment setup commands.
LivebookWeb.Hub.Teams.DeploymentGroupAgentComponent.dockerinstructions/2 and LivebookWeb.Hub.Teams.DeploymentGroupAgentComponent.flyinstructions/4 in lib/livebookweb/live/hub/teams/deploymentgroupagentcomponent.ex interpolate deployment group environment variable values into the generated Docker and Fly.io setup commands without shell escaping. The values originate from the deployment group configuration and reach the sinks through Livebook.Hubs.Dockerfile.onlinedockerinfo/3.
Both sinks place the value inside a double-quoted shell word, so a value containing a command substitution such as $(...) or backticks is evaluated by the shell without any need to break out of the quoting, and a literal double quote terminates the quoted word and allows arbitrary further tokens. The generated command is displayed in the Livebook web interface with a copy button, so a user who copies it and runs it without reviewing it first executes the injected commands on their own machine, under their own account.
An attacker requires privileges sufficient to set deployment group environment variables, while the resulting code execution occurs on the machine of whoever runs the generated command. The Kubernetes instructions are not affected, because they render the same values into a YAML manifest with escaping rather than into a shell command.
This issue affects livebook: from 0.13.0 before 0.18.7 and from 0.19.0 before 0.19.9.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
livebook-dev/livebookto a version that resolves this vulnerability.Fixed in 0.18.7 - Upgrade
Upgrade
livebook-dev/livebookto a version that resolves this vulnerability.Fixed in 0.19.9 - Configuration
Update the Docker instruction rendering so deployment group environment variables interpolated in LivebookWeb.Hub.Teams.DeploymentGroupAgentComponent.docker_instructions/2 are shell-escaped to prevent OS command injection when generating the command shown in the Livebook web UI.
LivebookWeb.Hub.Teams.DeploymentGroupAgentComponent (docker_instructions) Shell escaping for interpolated deployment group environment variable values = Enable shell escaping/neutralization when generating Docker setup commands - Configuration
Update the Fly.io instruction rendering so deployment group environment variables interpolated in LivebookWeb.Hub.Teams.DeploymentGroupAgentComponent.fly_instructions/4 are shell-escaped to prevent OS command injection when generating the command shown in the Livebook web UI.
LivebookWeb.Hub.Teams.DeploymentGroupAgentComponent (fly_instructions) Shell escaping for interpolated deployment group environment variable values = Enable shell escaping/neutralization when generating Fly.io setup commands - Compensating control
Advise users not to copy and run the generated deployment setup commands from the Livebook web interface without reviewing them first, since the injected commands execute on the machine of whoever runs the generated command.