Skip to main content

Eclipse CSI PIA CVE-2026-18353

| EUVDEUVD-2026-51066 HIGH
Server-Side Request Forgery (SSRF) (CWE-918)
2026-07-30 eclipse
8.8
CVSS 4.0 · Vendor: eclipse
Share

Severity by source

Vendor (eclipse) PRIMARY
8.8 HIGH
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
vuln.today AI
8.2 HIGH

Unauthenticated network endpoint with an unverified iss check (PR:N/AC:L); SSRF yields high integrity control over outbound requests (I:H) and limited data exposure (C:L), no availability impact.

3.1 AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:N
4.0 AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:H/VA:N/SC:N/SI:N/SA:N
Red Hat
8.2 HIGH
qualitative

Primary rating from Vendor (eclipse).

CVSS VectorVendor: eclipse

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
X

Lifecycle Timeline

3
Patch available
Jul 30, 2026 - 09:03 EUVD
Analysis Generated
Jul 30, 2026 - 08:39 vuln.today
CVE Published
Jul 30, 2026 - 07:23 cve.org
HIGH 8.8

DescriptionCVE.org

PIA's POST /v1/upload/sbom endpoint accepts a Bearer JWT and checks its unverified iss claim against an issuer allowlist using Python's urlparse before performing OIDC discovery with requests. Because urlparse and requests/urllib3 parse an authority string containing a backslash (e.g. https://attacker-host\@ci.eclipse.org/) into *different* hostnames, an attacker can craft an issuer that passes the allowlist check yet drives requests - and subsequently urllib.request.urlopen for JWKS retrieval - to connect to an arbitrary attacker-chosen host, port, and scheme.

AnalysisAI

Server-side request forgery in the Eclipse CSI PIA POST /v1/upload/sbom endpoint lets remote attackers coerce the server into connecting to an arbitrary host, port, and scheme of their choosing. By exploiting a parser-differential between Python's urlparse (used for the issuer allowlist check) and requests/urllib3/urllib (used for OIDC discovery and JWKS retrieval), an attacker crafts a JWT iss claim containing a backslash that passes validation but resolves to a different host during the actual fetch. The iss claim is only checked in its unverified form, so no legitimate token is needed; no public exploit has been identified at time of analysis and the issue is not listed in CISA KEV.

Technical ContextAI

The vulnerability is a classic OIDC issuer/JWKS SSRF rooted in inconsistent URL authority parsing (CWE-918, Server-Side Request Forgery). PIA validates the JWT iss claim against an issuer allowlist using urllib.parse.urlparse, then performs OIDC discovery with the requests library and fetches JWKS via urllib.request.urlopen. RFC 3986 treats a backslash as an invalid authority character, but implementations disagree on how to normalize it: given https://attacker-host\@ci.eclipse.org/, urlparse may interpret the host one way (matching the allowlisted ci.eclipse.org) while requests/urllib3 and the WHATWG-influenced browsers/clients treat the backslash as a delimiter, resolving the authority to attacker-host. This differential means the string that satisfies the security check is not the string that governs the network connection. The affected component is identified by CPE cpe:2.3:a:eclipse_foundation:eclipse_csi_-_pia:* and the flaw sits in the trust boundary between allowlist enforcement and outbound HTTP execution.

RemediationAI

Apply the fix from the Eclipse CSI PIA GitHub Security Advisory GHSA-v249-9xjm-qhgf (https://github.com/eclipse-csi/pia/security/advisories/GHSA-v249-9xjm-qhgf); an exact patched version is not stated in the provided data, so confirm and pin the fixed release from that advisory. The correct code-level fix is to parse the issuer once and reuse the identical, fully-normalized URL for both the allowlist check and the outbound request, and to reject any authority containing backslashes, embedded credentials (@), or other RFC 3986-invalid characters before comparison. As compensating controls until patched: enforce strict egress filtering so the PIA host can only reach the known OIDC issuer domains (e.g. ci.eclipse.org) rather than arbitrary hosts/ports - this blocks the SSRF pivot but requires maintaining an allowlist of legitimate issuers; restrict network access to the /v1/upload/sbom endpoint to trusted CI networks via reverse-proxy ACLs, at the cost of breaking any legitimate external callers; and validate the iss claim against an exact-match string allowlist (not a URL-parse comparison) to remove the parser-differential entirely.

More in Python

View all
CVE-2025-24016 CRITICAL POC
9.9 Feb 10

Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t

CVE-2025-27520 CRITICAL POC
9.8 Apr 04

BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser

CVE-2025-2945 CRITICAL POC
9.9 Apr 03

pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi

CVE-2013-5093 MEDIUM POC
6.8 Sep 27

The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python

CVE-2025-32375 CRITICAL POC
9.8 Apr 09

BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica

CVE-2014-0224 HIGH POC
7.4 Jun 05

OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph

CVE-2024-21644 HIGH POC
7.5 Jan 08

pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.

CVE-2026-33017 CRITICAL POC
9.3 Mar 17

Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301

CVE-2017-9462 HIGH POC
8.8 Jun 06

In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse

CVE-2026-49869 CRITICAL POC
10.0 Jun 26

Unauthenticated remote code execution affects Kestra OSS (the open-source event-driven orchestration platform) prior to

CVE-2026-39987 CRITICAL POC
9.3 Apr 08

Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/

CVE-2024-21645 MEDIUM POC
5.3 Jan 08

pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne

Vendor StatusVendor

Share

CVE-2026-18353 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy