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
    • 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-2004

CVE-2026-2004: PostgreSQL intarray Extension RCE Flaw

CVE-2026-2004 is a remote code execution vulnerability in PostgreSQL's intarray extension that lets attackers execute arbitrary code as the database user. This article covers technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-2004 Overview

A critical input validation vulnerability exists in the PostgreSQL intarray extension's selectivity estimator function. This flaw allows an authenticated object creator to execute arbitrary code with the privileges of the operating system user running the PostgreSQL database server. The vulnerability stems from improper validation of input types (CWE-1287), enabling attackers who can create database objects to escalate their access and potentially compromise the underlying system.

Critical Impact

An authenticated database user with object creation privileges can execute arbitrary code as the database server's OS user, potentially leading to full system compromise.

Affected Products

  • PostgreSQL versions before 18.2
  • PostgreSQL versions before 17.8
  • PostgreSQL versions before 16.12
  • PostgreSQL versions before 15.16
  • PostgreSQL versions before 14.21

Discovery Timeline

  • February 12, 2026 - CVE-2026-2004 published to NVD
  • February 12, 2026 - Last updated in NVD database

Technical Details for CVE-2026-2004

Vulnerability Analysis

This vulnerability resides in PostgreSQL's intarray extension, specifically within the selectivity estimator function. The selectivity estimator is used by the query planner to estimate how many rows will match a given condition, helping PostgreSQL optimize query execution plans. The flaw occurs because the function fails to properly validate the type of input it receives before processing.

When a malicious user creates a database object with specially crafted input that bypasses the type validation check, they can trigger arbitrary code execution in the context of the PostgreSQL server process. Since PostgreSQL typically runs as a dedicated system user (commonly postgres), successful exploitation grants the attacker the ability to execute commands with those privileges on the underlying operating system.

The vulnerability requires the attacker to have authenticated access to the database with sufficient privileges to create objects, which somewhat limits the attack surface but still represents a significant threat in multi-tenant database environments or systems where database access is granted to less-trusted users.

Root Cause

The root cause is improper validation of input types (CWE-1287) in the intarray extension's selectivity estimator function. The function does not adequately verify that the input it receives matches expected types before processing, allowing type confusion attacks that can lead to arbitrary code execution.

Attack Vector

The attack is network-accessible and requires low-privilege authenticated access to the PostgreSQL database. An attacker with the ability to create database objects (such as functions, operators, or other schema objects) can craft malicious input that exploits the type validation flaw in the intarray extension's selectivity estimator.

The exploitation path involves:

  1. Authenticating to the PostgreSQL database with object creation privileges
  2. Creating a malicious database object that leverages the intarray extension
  3. Triggering the selectivity estimator function with crafted input that bypasses type validation
  4. Executing arbitrary code as the PostgreSQL system user

For detailed technical information, refer to the PostgreSQL Security Advisory.

Detection Methods for CVE-2026-2004

Indicators of Compromise

  • Unusual object creation activity in PostgreSQL databases, particularly involving the intarray extension
  • Unexpected processes spawned by the postgres system user
  • Anomalous queries or function calls targeting the intarray extension's selectivity functions
  • Suspicious file system activity originating from the PostgreSQL process

Detection Strategies

  • Monitor PostgreSQL audit logs for unexpected DDL statements creating objects that reference the intarray extension
  • Implement database activity monitoring to detect unusual query patterns involving intarray functions
  • Use host-based intrusion detection to identify processes spawned by the PostgreSQL user that deviate from normal behavior
  • Review database roles and permissions to identify accounts with unnecessary object creation privileges

Monitoring Recommendations

  • Enable PostgreSQL logging with log_statement = 'ddl' to capture object creation events
  • Deploy endpoint detection and response (EDR) solutions like SentinelOne to monitor for suspicious process execution by the database user
  • Implement network segmentation to limit lateral movement if the database server is compromised
  • Establish baseline behavior for database operations and alert on deviations

How to Mitigate CVE-2026-2004

Immediate Actions Required

  • Upgrade PostgreSQL to patched versions: 18.2, 17.8, 16.12, 15.16, or 14.21 depending on your major version
  • Review and restrict database user privileges, removing unnecessary object creation rights
  • Audit the use of the intarray extension and consider disabling it if not required
  • Implement network-level access controls to limit database connectivity to trusted sources

Patch Information

PostgreSQL has released security patches addressing this vulnerability. Upgrade to the following versions or later:

Major VersionPatched Version
18.x18.2
17.x17.8
16.x16.12
15.x15.16
14.x14.21

For complete patch details and download links, see the PostgreSQL Security Advisory.

Workarounds

  • If immediate patching is not possible, revoke object creation privileges from untrusted database users
  • Disable or drop the intarray extension using DROP EXTENSION intarray; if it is not required for your application
  • Implement strict network access controls to limit who can connect to the PostgreSQL server
  • Use PostgreSQL's row-level security and role-based access controls to minimize the attack surface
bash
# Disable intarray extension if not needed
psql -U postgres -d your_database -c "DROP EXTENSION IF EXISTS intarray CASCADE;"

# Review users with object creation privileges
psql -U postgres -c "SELECT rolname, rolcreatedb, rolcreaterole FROM pg_roles WHERE rolcanlogin = true;"

# Restrict connection access in pg_hba.conf
# Ensure only trusted hosts can connect to the database

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPostgresql

  • SeverityHIGH

  • CVSS Score8.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1287
  • Technical References
  • PostgreSQL Security Advisory
  • Related CVEs
  • CVE-2025-13957: Hard-coded Credentials RCE Vulnerability

  • CVE-2026-2006: PostgreSQL RCE Vulnerability

  • CVE-2023-5869: PostgreSQL RCE Vulnerability

  • CVE-2024-10979: PostgreSQL PL/Perl RCE Vulnerability
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