CVE-2026-54344
Received Received - Intake

Remote Code Execution in ToolJet CI/CD Pipeline

Vulnerability report for CVE-2026-54344, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-08

Last updated on: 2026-07-08

Assigner: GitHub, Inc.

Description

ToolJet is an open-source low-code platform for building internal tools. Prior to 3.20.180, ToolJet's render preview deployment workflow interpolates github.event.comment.body directly into a bash conditional in a run step, allowing any GitHub user who can comment on an open pull request with a deploy command to execute shell commands on the CI runner and exfiltrate deployment secrets. This issue is reported as fixed in version 3.20.180.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-08
Last Modified
2026-07-08
Generated
2026-07-08
AI Q&A
2026-07-08
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
tooljet tooljet to 3.20.180 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-78 The product constructs all or part of an OS command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended OS command when it is sent to a downstream component.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Compliance Impact

This vulnerability allows unauthenticated attackers to execute arbitrary shell commands on the CI runner and exfiltrate sensitive deployment secrets such as API keys and tokens.

The exfiltration of sensitive secrets could lead to unauthorized access to protected data or systems, potentially resulting in violations of data protection regulations like GDPR or HIPAA if such secrets are used to access personal or health-related data.

Therefore, this vulnerability poses a risk to compliance with common standards and regulations by enabling unauthorized disclosure of sensitive information.

Executive Summary

CVE-2026-54344 is a vulnerability in ToolJet's GitHub Actions workflow that allows an attacker to execute arbitrary shell commands on the continuous integration (CI) runner.

The issue arises because the workflow directly inserts the content of GitHub issue comments into a bash conditional statement without proper sanitization. This means any GitHub user who can comment on an open pull request can craft a malicious comment that breaks out of the intended command context and runs arbitrary commands.

This vulnerability enables attackers to exfiltrate sensitive deployment secrets such as API keys and tokens from the CI environment.

Impact Analysis

This vulnerability can lead to unauthorized execution of commands on the CI runner, which can compromise the security of your deployment pipeline.

Attackers can steal sensitive secrets like API keys, GitHub tokens, and SMTP credentials, potentially leading to further unauthorized access, data breaches, or disruption of services.

Since the vulnerability allows any GitHub user to trigger the exploit by commenting on an open pull request, it poses a significant risk even from unauthenticated or low-privilege users.

Detection Guidance

This vulnerability can be detected by inspecting the GitHub Actions workflows, specifically the `render-preview-deploy.yml` file, for unsafe interpolation of user-controlled input such as `${{ github.event.comment.body }}` directly into bash commands without sanitization.

To detect exploitation attempts on your system, you can monitor CI runner logs for unusual shell command executions triggered by pull request comments containing `/deploy-ee` or other suspicious payloads.

Example commands to check for suspicious activity might include:

  • Searching GitHub Actions workflow files for unsafe interpolation: `grep -r '\${{ github.event.comment.body }}' .github/workflows/`
  • Checking CI runner logs for commands triggered by comments: `grep '/deploy-ee' /path/to/ci/runner/logs`
  • Monitoring for shell command injections by reviewing recent CI job logs for unexpected shell commands or secret exfiltration attempts.
Mitigation Strategies

Immediate mitigation steps include updating ToolJet to version 3.20.180 or later, where this vulnerability is fixed.

If updating is not immediately possible, modify the GitHub Actions workflow to add author association checks that restrict which users can trigger the deploy command via comments.

Avoid directly interpolating user-controlled input such as `${{ github.event.comment.body }}` into shell commands. Instead, use intermediate environment variables with proper sanitization.

Additionally, review and rotate any potentially exposed secrets such as `RENDER_API_KEY`, `CUSTOM_GITHUB_TOKEN`, and SMTP credentials to prevent unauthorized access.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-54344. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart