Severity by source
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
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.
Primary rating from Vendor (eclipse).
CVSS VectorVendor: eclipse
Lifecycle Timeline
3DescriptionCVE.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.
Articles & Coverage 1
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.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
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
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution affects Kestra OSS (the open-source event-driven orchestration platform) prior to
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Same weakness CWE-918 – Server-Side Request Forgery (SSRF)
View allVendor StatusVendor
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-51066