CVE-2026-7524: Langflow: RCE via symlink traversal in archive extraction
CRITICAL CISA: TRACK*IBM Langflow OSS versions 1.0.0 through 1.9.1 contain a critical path traversal vulnerability (CWE-22) in archive extraction that allows an unauthenticated remote attacker to achieve full remote code execution with a single network request. With a CVSS score of 9.8 and no authentication, privileges, or user interaction required, this is the worst possible exploitability profile — any internet-exposed Langflow instance is a direct path to host compromise, including all LLM API keys, vector database credentials, and pipeline data stored on that host. While no public exploit currently exists and CISA has not added this to KEV, symlink traversal in archive extraction is a well-understood attack class and weaponized PoCs typically emerge within days of patch publication. Upgrade immediately to the patched version listed in the IBM advisory, or firewall all public access to Langflow ports until patching is complete.
What is the risk?
Severity is CRITICAL with no practical mitigating factors. The CVSS 9.8 reflects maximum network exploitability: unauthenticated, low-complexity, network-accessible RCE with full confidentiality, integrity, and availability impact. Langflow is commonly deployed as an internet-facing service for building and hosting LLM pipelines, meaning many instances are directly exposed. Symlink-based path traversal in archive extraction is a reliable, well-documented exploitation class requiring minimal attacker skill — this rates as trivial to exploit once a PoC surfaces.
How does the attack unfold?
What systems are affected?
| Package | Ecosystem | Vulnerable Range | Patched |
|---|---|---|---|
| Langflow | pip | — | No patch |
Do you use Langflow? You're affected.
How severe is it?
What is the attack surface?
What should I do?
4 steps-
Patch immediately: Upgrade Langflow to the fixed version specified in the IBM advisory at https://www.ibm.com/support/pages/node/7273426.
-
Network isolation (if patching is blocked): Firewall Langflow's default ports (7860/7861) to block all public internet access — restrict to internal networks or VPN only.
-
Detection: Audit web server logs for multipart POST requests uploading archive files (.zip, .tar.gz, .tar); inspect filesystem events for writes to sensitive paths (cron directories, SSH authorized_keys, web-accessible directories) initiated by the Langflow process user.
-
Credential rotation: Treat any internet-exposed Langflow instance as potentially compromised — rotate all LLM API keys, vector DB passwords, and any secrets accessible from the Langflow host environment.
What does CISA's SSVC say?
Source: CISA Vulnrichment (SSVC v2.0). Decision based on the CISA Coordinator decision tree.
How is it classified?
Which compliance frameworks are affected?
This CVE is relevant to:
Frequently Asked Questions
What is CVE-2026-7524?
IBM Langflow OSS versions 1.0.0 through 1.9.1 contain a critical path traversal vulnerability (CWE-22) in archive extraction that allows an unauthenticated remote attacker to achieve full remote code execution with a single network request. With a CVSS score of 9.8 and no authentication, privileges, or user interaction required, this is the worst possible exploitability profile — any internet-exposed Langflow instance is a direct path to host compromise, including all LLM API keys, vector database credentials, and pipeline data stored on that host. While no public exploit currently exists and CISA has not added this to KEV, symlink traversal in archive extraction is a well-understood attack class and weaponized PoCs typically emerge within days of patch publication. Upgrade immediately to the patched version listed in the IBM advisory, or firewall all public access to Langflow ports until patching is complete.
Is CVE-2026-7524 actively exploited?
No confirmed active exploitation of CVE-2026-7524 has been reported, but organizations should still patch proactively.
How to fix CVE-2026-7524?
1. Patch immediately: Upgrade Langflow to the fixed version specified in the IBM advisory at https://www.ibm.com/support/pages/node/7273426. 2. Network isolation (if patching is blocked): Firewall Langflow's default ports (7860/7861) to block all public internet access — restrict to internal networks or VPN only. 3. Detection: Audit web server logs for multipart POST requests uploading archive files (.zip, .tar.gz, .tar); inspect filesystem events for writes to sensitive paths (cron directories, SSH authorized_keys, web-accessible directories) initiated by the Langflow process user. 4. Credential rotation: Treat any internet-exposed Langflow instance as potentially compromised — rotate all LLM API keys, vector DB passwords, and any secrets accessible from the Langflow host environment.
What systems are affected by CVE-2026-7524?
This vulnerability affects the following AI/ML architecture patterns: LLM workflow pipelines, agent frameworks, no-code/low-code AI development platforms, RAG pipelines, model serving.
What is the CVSS score for CVE-2026-7524?
CVE-2026-7524 has a CVSS v3.1 base score of 9.8 (CRITICAL). The EPSS exploitation probability is 0.62%.
What is the AI security impact?
Affected AI Architectures
MITRE ATLAS Techniques
AML.T0010.001 AI Software AML.T0049 Exploit Public-Facing Application AML.T0050 Command and Scripting Interpreter AML.T0072 Reverse Shell Compliance Controls Affected
What are the technical details?
Original Advisory
IBM Langflow OSS 1.0.0 through 1.9.1 could allow remote code execution due to improper validation of symbolic links during archive extraction.
Exploitation Scenario
An attacker scans for internet-exposed Langflow instances (trivial via Shodan or Censys queries for the Langflow UI). They craft a ZIP archive containing a symlink entry that resolves to a sensitive path outside the extraction root — for example, a symlink named 'payload' pointing to /etc/cron.d/backdoor. When Langflow extracts the archive without validating symlink targets, the attacker's subsequent upload of the actual payload file follows the symlink and writes a cron job to the system crontab directory, achieving scheduled code execution as the Langflow process user. The entire attack chain requires two HTTP requests, no credentials, and is executable by a script-kiddie once a PoC is published.
Weaknesses (CWE)
CWE-22 — Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal'): The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.
- [Implementation] Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if the input is only expected to contain colors such as "red" or "blue." Do not rely exclusively on looking for malicious or malformed inputs. This is likely to miss at least one undesirable input, especially if the code's environment changes. This can give attackers enough room to bypass the intended validation. However, denylis
- [Architecture and Design] For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
Source: MITRE CWE corpus.
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H References
Timeline
Related Vulnerabilities
CVE-2026-10561 10.0 Langflow: auth bypass + unauthenticated RCE (CVSS 10)
Same package: langflow CVE-2026-10134 10.0 Langflow: unauthenticated RCE via tool_code injection
Same package: langflow CVE-2026-33309 9.9 langflow: Path Traversal enables file access
Same package: langflow CVE-2026-55255 9.9 Langflow: IDOR allows cross-user flow execution
Same package: langflow CVE-2026-7873 9.9 Langflow: authenticated RCE enables credential theft
Same package: langflow