Skip to main content

Apache Polaris EUVDEUVD-2026-27038

| CVE-2026-42811 CRITICAL
Improper Neutralization of Special Elements used in an Expression Language Statement (CWE-917)
2026-05-04 apache GHSA-fc3h-c6h7-r83j
9.4
CVSS 4.0 · NVD
Share

Severity by source

NVD PRIMARY
9.4 CRITICAL
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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

Primary rating from NVD · only source for this CVE.

CVSS VectorNVD

CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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
Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
X

Lifecycle Timeline

7
Patch available
May 04, 2026 - 18:32 EUVD
Analysis Generated
May 04, 2026 - 17:46 vuln.today
CVSS changed
May 04, 2026 - 17:22 NVD
9.9 (CRITICAL) 9.4 (CRITICAL)
Patch released
May 04, 2026 - 17:16 nvd
Patch available
EUVD ID Assigned
May 04, 2026 - 17:15 euvd
EUVD-2026-27038
Analysis Generated
May 04, 2026 - 17:15 vuln.today
CVE Published
May 04, 2026 - 16:37 nvd
CRITICAL 9.4

Blast Radius

ecosystem impact
† from your stack dependencies † transitive graph · vuln.today resolves 4-path depth
  • 23 maven packages depend on org.apache.polaris:polaris-core (17 direct, 6 indirect)

Ecosystem-wide dependent count for version 1.4.1.

DescriptionCVE.org

In plain terms, Apache Polaris is supposed to issue short-lived GCS credentials that only work for one table's files, but a crafted namespace or table name can cause those credentials to work across the configured bucket instead.

Apache Polaris builds Google Cloud Storage downscoped credentials by creating a Credential Access Boundary (CAB) with CEL conditions that are intended to restrict access to the requested table's storage path.

The relevant CEL string is built from the bucket name and the table path. That table path is derived from namespace and table identifiers. In current code, that path appears to be inserted into the CEL expression without escaping.

As a result, a namespace or table identifier containing a single quote and other URI-safe CEL fragments can break out of the intended quoted string and change the meaning of the CEL condition.

In private testing against Polaris 1.4.0 on real Google Cloud Storage, it was confirmed that Polaris accepted a crafted identifier and returned delegated GCS credentials whose CEL path restriction had effectively collapsed.

Those delegated credentials could then:

  • list another table's object prefix;
  • read another table's metadata control file (Iceberg metadata JSON);
  • create and delete an object under another table's object prefix;
  • and also list, read, create, and delete objects under an unrelated

external prefix in the same bucket that was not part of any table path.

That last point is important. The issue is not limited to "another table". In the confirmed setup, once Apache Polaris returned credentials for the crafted table, the path restriction inside the configured bucket was effectively gone.

The practical effect is that temporary credentials for one crafted table can be broader than the table Polaris was asked to authorize, and can become effectively bucket-wide within the configured bucket.

The current GCS testing used a Polaris principal with broad catalog privileges for setup. A separate least-privilege Polaris RBAC variant has not yet been tested on GCS. However, the storage-credential broadening behavior itself has been confirmed on GCS.

AnalysisAI

CEL injection in Apache Polaris 1.4.0 allows authenticated users to escape credential access boundaries on Google Cloud Storage. Attackers can craft namespace or table identifiers containing single quotes and CEL fragments to break out of quoted strings in Credential Access Boundary conditions, escalating temporary table-scoped GCS credentials to effectively bucket-wide access. Confirmed in private testing: attackers obtained credentials intended for one table but successfully listed, read, created, and deleted objects across unrelated tables and external prefixes within the entire configured bucket. EPSS data not yet available for this recent CVE; CVSS 9.4 reflects critical confidentiality, integrity, and availability impact across both vulnerable and subsequent systems (scope changed).

Technical ContextAI

Apache Polaris is a catalog service for Apache Iceberg table formats that manages access to data lake storage. When issuing Google Cloud Storage credentials, Polaris uses GCS Credential Access Boundaries (CAB) with Common Expression Language (CEL) conditions to scope temporary credentials to specific object prefixes corresponding to Iceberg table paths. The vulnerability stems from CWE-917 (Expression Language Injection): Polaris constructs CEL expressions by concatenating user-controlled namespace and table identifiers directly into CEL condition strings without proper escaping or sanitization. CEL syntax allows string literals delimited by single quotes, and supports complex boolean logic. An attacker supplying a table identifier like "table' || true || 'x" can terminate the intended string literal, inject arbitrary CEL logic (here, "|| true" makes the condition always evaluate to true), and effectively neutralize the path restriction. The affected CPE is cpe:2.3:a:apache_software_foundation:apache_polaris:*:*:*:*:*:*:*:* with confirmed vulnerable version 1.4.0. This represents a server-side template injection variant where the template language is CEL and the injection point is within IAM policy condition generation rather than HTML rendering.

RemediationAI

Upgrade to Apache Polaris version 1.5.0 or later once available-the vendor advisory does not specify an exact patched version number, so monitor https://lists.apache.org/thread/hovn5hmkj9wj7v9cd8sn67svg03klgvg and Apache Polaris release announcements for patch availability confirmation. Until patched version is deployed, implement these compensating controls with noted trade-offs: (1) Restrict Polaris catalog privileges to trusted principals only-remove CREATE_TABLE and CREATE_NAMESPACE permissions from general users, accepting reduced self-service capability; this limits who can inject malicious identifiers but does not eliminate risk from compromised privileged accounts. (2) Implement server-side validation rejecting namespace and table identifiers containing single quotes, double quotes, or CEL special characters (||, &&, !, parentheses)-blocks the injection vector but may break legitimate use cases if applications rely on special characters in identifiers; coordinate with data engineering teams. (3) Deploy separate GCS buckets per table or per trust boundary rather than sharing buckets across tables-contains blast radius so credential escalation affects only the dedicated bucket, but increases storage management complexity and costs. (4) Enable GCS audit logging and alert on access patterns where credentials access object prefixes outside their expected table paths-provides detection but not prevention; requires Security Command Center or custom log analysis. The advisory confirms the vulnerability is not limited to cross-table access but extends to arbitrary objects in the configured bucket, so bucket isolation (option 3) is the most effective compensating control until patches are available.

Share

EUVD-2026-27038 vulnerability details – vuln.today

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