A GitHub Actions workflow uses untrusted user input from issue_comment.body directly inside a shell command, allowing potential command injection and arbitrary code execution on the runner.
The workflow is triggered by issue_comment, which can be controlled by external users.
In the following step:
echo identifiers=$(echo "${{ github.event.comment.body }}" | grep -oE '@njzjz-bot .*' | head -n1 | cut -c12- | xargs) >> $GITHUB_OUTPUT
the value of github.event.comment.body is directly interpolated into a shell command inside run:.
Since GitHub Actions evaluates ${{ }} before execution, attacker-controlled input is injected into the shell context without sanitization. This creates a command injection risk.
Additionally, the extracted value is later reused in another step that constructs output using backticks:
echo '@${{ github.event.comment.user.login }} Here is the BibTeX entry for `${{ steps.extract-identifiers.outputs.identifiers }}`:'
which may further propagate unsafe content.
@njzjz-bot paper123" ) ; whoami ; #
The injected payload successfully breaks out of the quoted context and executes arbitrary shell commands.
As shown in the workflow logs, the injected whoami command is executed, and the output (runner) is printed. This confirms that attacker-controlled input from github.event.comment.body is interpreted as shell commands.
This demonstrates a clear command injection vulnerability in the workflow.
Potential impacts:
GITHUB_TOKENThis issue affects all current versions of the repository as the vulnerable workflow is present in the main branch.
Avoid directly interpolating untrusted user input into shell commands.
Instead, pass github.event.comment.body through an environment variable and reference it safely within the script:
```yaml - name: Extract identifiers id: extract-identifiers env: COMMENTBODY: ${{ github.event.comment.body }} run: | identifiers=$(echo "$COMMENTBODY" | grep -oE '@njzjz-bot .*' | head -n1 | cut -c12- | xargs) echo "identifiers=$identifiers" >> $GITHUB_OUTPUT
{
"github_reviewed": true,
"github_reviewed_at": "2026-03-29T15:39:56Z",
"severity": "CRITICAL",
"nvd_published_at": "2026-03-31T16:16:33Z",
"cwe_ids": [
"CWE-20",
"CWE-77",
"CWE-78"
]
}