GHSA-wrvw-254r-wpmv
CliInvoke.Specializations has command injection in PowerShell and Cmd shell wrappers
Quick fix
GHSA-wrvw-254r-wpmv — CliInvoke.Specializations: upgrade to the fixed version with the command below.
dotnet add package CliInvoke.Specializations --version 2.8.5Details
### Impact An OS command injection vulnerability exists in the PowerShell and Cmd shell wrappers provided by the `CliInvoke.Specializations` package (the `PowershellProcessInvoker`/`CmdProcessInvoker` invokers, and the `UsePowerShell`/`UseCmd` middleware in v3 pre-release versions).
The wrappers re-run a caller-supplied target and arguments inside a shell command (`pwsh -Command ...` / `cmd /c ...`). In affected versions the wrapped command was delivered to the operating system as a single `ProcessStartInfo.Arguments` string. The OS command-line parser re-tokenizes that string before the shell parses it, so a double quote (`"`) in the target or arguments breaks OS-level quoting and lets the wrapped shell reassemble a second, unintended command.
An attacker could exploit this to execute arbitrary commands with the privileges of the host process.
### Patches The Specializations Packages now deliver the command via `ProcessStartInfo.ArgumentList` (natively where supported, and polyfilled in older TFMs), so that the operating system passes argv verbatim and only the shell parses the command once.
Upgrade to: - **2.8.5** (2.8.x line) - **2.9.4** (2.9.x line) - **2.10.5** (2.10.x line) - **3.0.0-beta.1** (3.x pre-release line)
### Workarounds No complete workaround is available. Until upgraded:
- Reject or strip `"` from any target path or argument passed to the PowerShell/Cmd wrappers. On 2.2.0 – 2.9.2 and 3.0.0-alpha.1 – alpha.4, also reject shell metacharacters (`;`, `|`, `&`, `$`, backtick, parentheses). - Alternatively, bypass the wrappers for untrusted input and invoke the target process directly so that no second shell parse of the data occurs.
Are you affected?
Enter the version of the package you're using.
Affected packages
2.2.0Fixed in: 2.8.5dotnet add package CliInvoke.Specializations --version 2.8.52.9.0Fixed in: 2.9.4dotnet add package CliInvoke.Specializations --version 2.9.42.10.0Fixed in: 2.10.5dotnet add package CliInvoke.Specializations --version 2.10.53.0.0-alpha.1Fixed in: 3.0.0-beta.1dotnet add package CliInvoke.Specializations --version 3.0.0-beta.13.0.0-alpha.8Fixed in: 3.0.0-beta.1dotnet add package CliInvoke.Specializations --version 3.0.0-beta.11.0.0-rc.1Fixed in: 2.0.2dotnet add package AlastairLundy.CliInvoke.Specializations --version 2.0.2References
- https://github.com/alastairlundy/CliInvoke/security/advisories/GHSA-wrvw-254r-wpmv[WEB]
- https://nvd.nist.gov/vuln/detail/CVE-2026-100368[ADVISORY]
- https://github.com/alastairlundy/CliInvoke/commit/1e98582f02eb43e345e5b97b8dd6ff9443806685[WEB]
- https://github.com/alastairlundy/CliInvoke/commit/2077e5239850e83dc9cc67ae6036dcd4e68a1876[WEB]
- https://github.com/alastairlundy/CliInvoke[PACKAGE]
- https://github.com/alastairlundy/CliInvoke/releases/tag/2.10.5[WEB]
- https://github.com/alastairlundy/CliInvoke/releases/tag/3.0.0-beta.1[WEB]