CVE-2026-55158: OS Command Injection
Impact
Versions of conflibot before 1.2.1 build git commands by string interpolation and run them through a shell. Several of the interpolated values are pull request branch names (head.ref), which are attacker-controlled: anyone can open a pull request (including from a fork) whose head branch name contains shell metacharacters such as , $( ), ;, |, or &.
The recommended workflow runs conflibot on the pullrequesttarget event, where the job has access to the base repository's secrets and a write-scoped GITHUBTOKEN. As a result, a crafted branch name causes arbitrary command execution on the runner with that write token in the environment, allowing an attacker to exfiltrate secrets and the token, push to the repository, or otherwise abuse the token's permissions. No special privileges and no maintainer interaction are required — the action runs automatically when the pull request is opened.
Affected configurations
Any workflow using wktk/conflibot at a version earlier than 1.2.1. The risk is highest under pullrequesttarget (the documented configuration), because that is where the write token and secrets are exposed to attacker-influenced refs.
Patches
Fixed in 1.2.1 and 2.0.0. All git invocations now use argument arrays via execFile/spawn instead of a shell, so branch names can no longer be interpreted as shell syntax, and pull requests are referenced by number through refs/pull/<n>/head rather than by branch name.
Workarounds
There is no configuration-only workaround for affected versions. Upgrade to wktk/conflibot@v2. On GitHub-hosted runners this is a drop-in upgrade; self-hosted runners additionally need Node.js 24 support and git 2.38 or later.
Resources
- Fix (v2.0.0): https://github.com/wktk/conflibot/commit/0107ac6 - Fix (v1.2.1): https://github.com/wktk/conflibot/commit/59e255c - Releases: https://github.com/wktk/conflibot/releases/tag/v2.0.0 and https://github.com/wktk/conflibot/releases/tag/v1.2.1
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
actions/wktk/conflibotto a version that resolves this vulnerability.Fixed in 1.2.1 - Upgrade
Upgrade
wktk/conflibotto a version that resolves this vulnerability.Fixed in 1.2.1 - Upgrade
Upgrade
wktk/conflibotto a version that resolves this vulnerability.Fixed in 2.0.0 - Compensating control
If using the recommended workflow, run wktk/conflibot on the pull_request_target event only with the documented least-privilege permissions: base repository secrets access and a write-scoped GITHUB_TOKEN, since the risk is highest under pull_request_target (attacker-controlled head.ref branch names can influence command execution in versions earlier than 1.2.1).
Event History
Frequently Asked Questions
What is the severity of CVE-2026-55158?
The severity of CVE-2026-55158 is assessed as critical with a score of 9.1.
How do I fix CVE-2026-55158?
To fix CVE-2026-55158, upgrade to conflibot version 1.2.1 or later.
What type of vulnerability is CVE-2026-55158?
CVE-2026-55158 is classified as an OS Command Injection vulnerability.
What impact does CVE-2026-55158 have?
CVE-2026-55158 allows attackers to execute shell commands by injecting malicious strings into git commands.
What software is affected by CVE-2026-55158?
The affected software is actions/wktk/conflibot prior to version 1.2.1.