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

CVE-2026-23495: Pimcore Auth Bypass Vulnerability

CVE-2026-23495 is an authentication bypass flaw in Pimcore Admin Classic Bundle that allows unauthorized users to access Predefined Properties. This post covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23495 Overview

CVE-2026-23495 is an authorization bypass vulnerability in Pimcore's Admin Classic Bundle, which provides the Backend UI for Pimcore content management platform. Prior to versions 2.2.3 and 1.7.16, the API endpoint responsible for listing Predefined Properties lacks adequate server-side authorization checks. Predefined Properties are configurable metadata definitions (e.g., name, key, type, default value) used across documents, assets, and objects to standardize custom attributes and improve editorial workflows.

Testing confirmed that an authenticated backend user without explicit permissions for property management could successfully call the endpoint and retrieve the complete list of these configurations, potentially exposing sensitive metadata configurations.

Critical Impact

Authenticated users without proper permissions can access the Predefined Properties API endpoint, leading to unauthorized information disclosure of metadata configurations used across documents, assets, and objects within the Pimcore platform.

Affected Products

  • Pimcore Admin Classic Bundle versions prior to 2.2.3
  • Pimcore Admin Classic Bundle versions prior to 1.7.16
  • Pimcore platforms utilizing the Admin Classic Bundle Backend UI

Discovery Timeline

  • 2026-01-15 - CVE CVE-2026-23495 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2026-23495

Vulnerability Analysis

This vulnerability falls under CWE-284 (Improper Access Control), a category of flaws where the application fails to properly restrict access to resources or functionality. In this case, the propertiesAction method in SettingsController.php did not enforce permission checks for read operations on Predefined Properties.

The core issue is that the authorization check for predefined_properties permission was only enforced when modifying data (when the request contained data parameters), but not when simply retrieving the property list. This allowed any authenticated backend user to enumerate and view all Predefined Property configurations regardless of their assigned permissions.

Root Cause

The root cause lies in the improper placement of the permission check within the propertiesAction method. The $this->checkPermission('predefined_properties') call was placed inside a conditional block that only executed when the request included data parameters for modification operations. Read-only requests to list properties bypassed this authorization gate entirely.

Attack Vector

An attacker with valid but low-privilege credentials to the Pimcore backend can exploit this vulnerability over the network. The attack requires no user interaction and can be performed by simply calling the Predefined Properties API endpoint. The attacker gains unauthorized read access to property configurations, which may reveal sensitive metadata structures, default values, and organizational data models used throughout the content management system.

php
// Vulnerable code - permission check only triggered on data modification
public function propertiesAction(Request $request): JsonResponse
{
    if ($request->get('data')) {
        $this->checkPermission('predefined_properties');
        // ... modification logic
    }
    // Read operations had no permission check
}

// Fixed code - permission check enforced for all operations
public function propertiesAction(Request $request): JsonResponse
{
    $this->checkPermission('predefined_properties');
    
    if ($request->get('data')) {
        // ... modification logic
    }
}

Source: GitHub Commit Update

Detection Methods for CVE-2026-23495

Indicators of Compromise

  • Unusual API calls to the Predefined Properties endpoint from user accounts that lack predefined_properties permission
  • Access logs showing authenticated users accessing /admin/settings/properties endpoint without corresponding administrative roles
  • Anomalous patterns of metadata enumeration activities from backend user accounts

Detection Strategies

  • Implement audit logging for all Predefined Properties API endpoint access and correlate with user permission assignments
  • Monitor for authenticated sessions making requests to settings controller endpoints without matching administrative privileges
  • Deploy application-layer detection rules to flag unauthorized access attempts to property management functions

Monitoring Recommendations

  • Enable verbose logging on the Pimcore Admin Classic Bundle to capture all API requests to settings endpoints
  • Configure alerts for any access to the propertiesAction endpoint from users without predefined_properties permission
  • Periodically review access logs for the /admin/settings/properties endpoint to identify potential exploitation attempts

How to Mitigate CVE-2026-23495

Immediate Actions Required

  • Upgrade Pimcore Admin Classic Bundle to version 2.2.3 or 1.7.16 immediately
  • Review user accounts and ensure the principle of least privilege is applied to backend access
  • Audit access logs for any historical unauthorized access to the Predefined Properties endpoint
  • Verify all authenticated backend users have appropriate permission assignments

Patch Information

The vulnerability is fixed in Pimcore Admin Classic Bundle versions 2.2.3 and 1.7.16. The fix moves the checkPermission('predefined_properties') call to execute unconditionally at the beginning of the propertiesAction method, ensuring all requests (both read and write) are properly authorized. Security patches are available via the official GitHub releases:

  • GitHub Release v2.2.3
  • GitHub Release v1.7.16
  • GitHub Security Advisory GHSA-hqrp-m84v-2m2f

Workarounds

  • Restrict backend access to only trusted users until the patch can be applied
  • Implement network-level access controls to limit who can reach the Pimcore admin interface
  • Use a web application firewall (WAF) to block unauthorized requests to sensitive admin endpoints
  • Consider temporarily disabling the Predefined Properties feature if not critical to operations
bash
# Update Pimcore Admin Classic Bundle via Composer
composer update pimcore/admin-ui-classic-bundle --with-all-dependencies

# Verify installed version
composer show pimcore/admin-ui-classic-bundle | grep -i version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPimcore

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.00%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Commit Update

  • GitHub Release v1.7.16

  • GitHub Release v2.2.3

  • GitHub Security Advisory GHSA-hqrp-m84v-2m2f
  • Related CVEs
  • CVE-2026-23494: Pimcore Auth Bypass Vulnerability

  • CVE-2026-23496: Pimcore Web2Print Auth Bypass Flaw

  • CVE-2026-27461: Pimcore SQL Injection Vulnerability

  • CVE-2026-23493: Pimcore Information Disclosure Flaw
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