Fix command injection in release workflow (CVE)#677
Merged
Conversation
Move github.event.inputs.tag from direct shell interpolation to env
variables in all jobs (linux, musllinux, windows, macos, sdist,
github-release). Direct ${{ }} interpolation in run: blocks allows
arbitrary command execution via crafted tag inputs.
glegendre01
approved these changes
Mar 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.github/workflows/release.yml(HackerOne #3581567, severity High 8.8)${{ github.event.inputs.tag }}was interpolated directly inrun:blocks, allowing arbitrary RCE via crafted tag input (e.g.v0.1.0; id; cat /etc/passwd;#)env:variables so the value is passed as a shell environment variable instead of being interpolated into the scriptJobs fixed
linux— "Update version in toml" stepmusllinux— "Update version in toml" stepwindows— "Update version in toml" stepmacos— "Update version in toml" stepsdist— "Update version in toml" stepgithub-release— "Create GitHub Release" step (gh release create)