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-2360

CVE-2026-2360: PostgreSQL Anonymizer Privilege Escalation

CVE-2026-2360 is a privilege escalation vulnerability in PostgreSQL Anonymizer allowing users to gain superuser privileges via malicious operators. This article covers technical details, affected versions, and mitigations.

Published: February 13, 2026

CVE-2026-2360 Overview

PostgreSQL Anonymizer contains a privilege escalation vulnerability that allows a database user to gain superuser privileges by creating a custom operator in the public schema containing malicious code. This operator is subsequently executed with superuser privileges when the extension is created, enabling complete database compromise.

Critical Impact

A lower-privileged database user can escalate to superuser privileges, potentially gaining full control over the PostgreSQL instance and all data contained within.

Affected Products

  • PostgreSQL Anonymizer versions prior to 3.0.1
  • PostgreSQL 14 and instances upgraded from PostgreSQL 14 or earlier versions (higher risk)
  • PostgreSQL 15 and later with non-default schema configurations granting CREATE privilege to untrusted users

Discovery Timeline

  • 2026-02-11 - CVE CVE-2026-2360 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2026-2360

Vulnerability Analysis

This vulnerability represents a classic privilege escalation through operator hijacking in PostgreSQL extensions. The attack exploits the order in which PostgreSQL resolves operators during extension installation. When PostgreSQL Anonymizer is installed, it searches for operators in the search_path, which by default includes the public schema before other schemas.

An attacker with the ability to create objects in the public schema can define a custom operator with a name that matches one used by the Anonymizer extension. When a database superuser subsequently creates or enables the PostgreSQL Anonymizer extension, the malicious operator is resolved and executed in the superuser context, granting the attacker elevated privileges.

The severity of this vulnerability varies based on PostgreSQL version. PostgreSQL 14 and earlier versions are at higher risk because the public schema grants CREATE privileges to all database users by default. Starting with PostgreSQL 15, this default behavior was changed to revoke CREATE permissions on the public schema, significantly reducing the attack surface. However, the vulnerability can still be exploited in PostgreSQL 15+ if administrators explicitly grant CREATE privileges on schemas included in their search_path to untrusted users.

Root Cause

The root cause is classified as CWE-427 (Uncontrolled Search Path Element). The PostgreSQL Anonymizer extension does not adequately control the search path used during operator resolution, allowing user-controlled schemas to inject malicious operators that get executed with elevated privileges during extension initialization.

Attack Vector

The attack is network-accessible and requires high privileges (the ability to create database objects). The attacker must:

  1. Have CREATE privileges on a schema that appears in the superuser's search_path
  2. Create a malicious custom operator that mimics an operator used by the Anonymizer extension
  3. Wait for a superuser to install or reinitialize the PostgreSQL Anonymizer extension
  4. The malicious operator code executes with superuser privileges

The vulnerability exploitation requires the confluence of these conditions, making the attack complexity high. However, successful exploitation results in complete compromise of database confidentiality, integrity, and availability with changed scope, as the attacker can affect resources beyond the originally authorized scope.

Detection Methods for CVE-2026-2360

Indicators of Compromise

  • Unusual custom operators created in the public schema or other commonly used schemas
  • Operators with names matching those used by PostgreSQL Anonymizer extension
  • Database audit logs showing operator creation by non-administrative users followed by extension operations
  • Unexpected privilege grants or role modifications in PostgreSQL

Detection Strategies

  • Monitor PostgreSQL audit logs for CREATE OPERATOR statements from non-administrative accounts
  • Review existing operators in the public schema using \do public.* in psql
  • Implement database activity monitoring to alert on schema object creation in sensitive schemas
  • Audit search_path configurations for all database users and roles

Monitoring Recommendations

  • Enable PostgreSQL logging with log_statement = 'ddl' to capture all DDL operations
  • Deploy database activity monitoring solutions that can detect privilege escalation patterns
  • Regularly audit database objects in the public schema and compare against a known-good baseline
  • Monitor for unexpected superuser activity following extension installations

How to Mitigate CVE-2026-2360

Immediate Actions Required

  • Upgrade PostgreSQL Anonymizer to version 3.0.1 or later immediately
  • Audit the public schema for suspicious or unexpected custom operators
  • Review and restrict CREATE privileges on schemas included in superuser search paths
  • For PostgreSQL 14 or upgraded instances, revoke CREATE on the public schema from untrusted users

Patch Information

The vulnerability is resolved in PostgreSQL Anonymizer version 3.0.1 and all subsequent versions. Administrators should update to the latest version available from the official repository. For detailed information about the vulnerability and fix, refer to GitLab Issue #616.

Workarounds

  • Revoke CREATE privileges on the public schema from all non-administrative users: REVOKE CREATE ON SCHEMA public FROM PUBLIC;
  • Configure a restrictive search_path that does not include user-accessible schemas when performing administrative operations
  • Use schema-qualified object references in the extension to prevent operator hijacking
  • Follow PostgreSQL security best practices as documented in the PostgreSQL DDL Schemas Documentation
bash
# Revoke CREATE privileges on public schema
psql -U postgres -c "REVOKE CREATE ON SCHEMA public FROM PUBLIC;"

# Verify current permissions on public schema
psql -U postgres -c "\dn+ public"

# List all operators in public schema for audit
psql -U postgres -c "SELECT * FROM pg_operator WHERE oprnamespace = 'public'::regnamespace;"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechPostgresql

  • SeverityHIGH

  • CVSS Score8.0

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-427
  • Technical References
  • GitLab PostgreSQL Anonymizer News

  • GitLab PostgreSQL Anonymizer Issue #616

  • PostgreSQL DDL Schemas Documentation
  • Related CVEs
  • CVE-2026-2361: PostgreSQL Anonymizer Privilege Escalation

  • CVE-2024-10978: PostgreSQL Privilege Escalation Flaw

  • CVE-2024-0985: PostgreSQL Privilege Escalation Vulnerability

  • CVE-2022-1552: PostgreSQL Privilege Escalation Vulnerability
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