The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-42809

CVE-2026-42809: Apache Polaris Privilege Escalation Flaw

CVE-2026-42809 is a privilege escalation vulnerability in Apache Polaris that allows attackers to obtain broad storage credentials by manipulating table locations. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-42809 Overview

CVE-2026-42809 affects Apache Polaris, an open-source catalog for Apache Iceberg. The flaw resides in the staged table creation flow, where Polaris issues delegated ("vended") storage credentials before validating the requested table location. An authenticated attacker can supply an arbitrary location, write.data.path, or write.metadata.path value during stage-create and receive scoped temporary credentials targeting that attacker-chosen location. Because the location is never checked for validity or overlap with existing tables, the resulting credentials grant access to data and metadata outside the caller's intended boundary. The issue is tracked as an input validation flaw [CWE-20].

Critical Impact

Authenticated callers can obtain delegated cloud storage credentials directed at attacker-controlled paths, leading to unauthorized read/write access to Iceberg table data and metadata.

Affected Products

  • Apache Polaris (staged table creation flow with credential vending enabled)
  • Deployments accepting custom location parameters during stage-create
  • Deployments honoring write.data.path and write.metadata.path request properties

Discovery Timeline

  • 2026-05-04 - CVE-2026-42809 published to the National Vulnerability Database
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-42809

Vulnerability Analysis

Apache Polaris brokers access to object storage by issuing short-lived, scoped credentials tied to a table's effective location. The staged table creation path issues these credentials before the location is validated. The scope-limiting mechanism is therefore controlled by the attacker, not the catalog. A caller with permission to create staged tables can request credential vending against any reachable storage path the underlying principal can reach.

The weakness violates the catalog's central trust assumption that vended credentials are always bounded by catalog-enforced policy. The vulnerability is classified as Improper Input Validation [CWE-20] and impacts confidentiality, integrity, and availability of stored table data.

Root Cause

The stage-create handler constructs delegated storage credentials immediately from the caller-supplied location. The handler skips two checks normally enforced on table creation: location validation against allowed namespaces or storage configurations, and overlap checks against existing tables. The same code path also accepts write.data.path and write.metadata.path from request properties and merges them into the effective location set used for credential vending, without prior validation.

Attack Vector

An authenticated user with stage-create privileges sends a create request specifying a custom location pointing to a storage prefix they should not access. The user requests credential vending in the same call. Polaris responds with temporary credentials scoped to that path. The attacker then uses those credentials directly against the cloud storage endpoint to read or overwrite Iceberg data or metadata files belonging to other tables. Secondary variants exploit write.data.path and write.metadata.path overrides for the same effect.

No public proof-of-concept is currently linked in the advisory. Refer to the Apache Mailing List Discussion and the OpenWall Security Mailing List post for technical details.

Detection Methods for CVE-2026-42809

Indicators of Compromise

  • Stage-create API calls containing a custom location value that does not match the namespace's configured storage prefix.
  • Create-table requests including write.data.path or write.metadata.path properties referencing unexpected buckets or prefixes.
  • Credential vending responses issuing tokens scoped to paths overlapping existing tables owned by other principals.
  • Cloud storage access logs showing reads or writes from Polaris-issued temporary credentials against objects not owned by the requesting user.

Detection Strategies

  • Correlate Polaris audit logs of stage-create calls with downstream cloud storage access logs (AWS CloudTrail, Azure Storage logs, GCP audit logs) to identify mismatches between the requesting principal and the accessed prefix.
  • Alert on any stage-create request where the location, write.data.path, or write.metadata.path field is present, especially from non-administrative roles.
  • Baseline the set of legitimate storage prefixes per namespace and flag credential vending events targeting paths outside that baseline.

Monitoring Recommendations

  • Forward Polaris REST catalog access logs to a centralized analytics platform and retain credential-vending events for forensic review.
  • Monitor short-lived credential issuance volume per user; sudden increases may indicate enumeration of reachable storage paths.
  • Track Iceberg metadata file modifications to detect tampering performed via attacker-directed credentials.

How to Mitigate CVE-2026-42809

Immediate Actions Required

  • Upgrade Apache Polaris to the fixed release once published by the project; track the Apache Mailing List Discussion for version details.
  • Restrict the principals authorized to create staged tables and to request credential vending to a minimal trusted set.
  • Audit recent stage-create calls and revoke any long-lived storage credentials that may have been chained from vended tokens.

Patch Information

Apache Polaris maintainers have announced the issue on the project mailing list. Apply the upstream fix that enforces location validation and overlap checks before any credentials are issued during the stage-create flow. Confirm the patched build also validates write.data.path and write.metadata.path request properties.

Workarounds

  • Disable credential vending on the staged-create path until the patched release is deployed.
  • Configure storage backends so that the catalog's underlying IAM principal cannot reach prefixes outside the catalog's managed namespaces, limiting the blast radius of attacker-directed scoping.
  • Reject create-table requests at an API gateway when they include caller-supplied location, write.data.path, or write.metadata.path fields.
  • Rotate the cloud IAM role or service principal used by Polaris to invalidate any credentials previously issued through the vulnerable path.
bash
# Example gateway rule to reject attacker-influenced location overrides
# (pseudo-config; adapt to your reverse proxy or API gateway syntax)
if ($request_body ~* '"(location|write\.data\.path|write\.metadata\.path)"\s*:') {
    return 403 "location overrides disabled pending CVE-2026-42809 patch";
}

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechApache Polaris

  • SeverityCRITICAL

  • CVSS Score9.4

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • 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
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-20
  • Technical References
  • Apache Mailing List Discussion

  • OpenWall Security Mailing List
  • Related CVEs
  • CVE-2026-42812: Apache Polaris Auth Bypass Vulnerability

  • CVE-2026-42811: Apache Polaris Information Disclosure Bug

  • CVE-2026-42810: Apache Polaris Information Disclosure
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English