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

CVE-2026-23494: Pimcore Auth Bypass Vulnerability

CVE-2026-23494 is an authorization bypass vulnerability in Pimcore that allows authenticated users to access static route configurations without proper permissions. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-23494 Overview

CVE-2026-23494 is an authorization bypass vulnerability in Pimcore, an Open Source Data & Experience Management Platform. The application fails to enforce proper server-side authorization checks on the API endpoint responsible for reading or listing static routes. This allows authenticated backend users without explicit permissions to access sensitive route configurations that should be restricted.

In Pimcore, static routes are custom URL patterns defined via the backend interface or the var/config/staticroutes.php file, including details like regex-based patterns, controllers, variables, and priorities. These routes are registered automatically through the PimcoreStaticRoutesBundle and integrated into the MVC routing system.

Critical Impact

Authenticated users with low privileges can bypass authorization controls to retrieve sensitive routing configurations, potentially exposing internal application architecture and security-sensitive URL patterns.

Affected Products

  • Pimcore versions prior to 12.3.1
  • Pimcore versions prior to 11.5.14

Discovery Timeline

  • January 15, 2026 - CVE-2026-23494 published to NVD
  • January 20, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23494

Vulnerability Analysis

The vulnerability stems from missing authorization enforcement on the static routes API endpoint. When an authenticated backend user sends a request to retrieve static route configurations (e.g., GET /api/static-routes), the server fails to validate whether the user has the necessary permissions to access this sensitive information.

Static routes in Pimcore contain valuable information about the application's URL structure, including regex-based URL patterns, associated controllers, route variables, and priority configurations. Exposure of this data could help an attacker map the application's attack surface or identify additional vulnerabilities in the routing logic.

The weakness is classified under CWE-284 (Improper Access Control), indicating a failure to properly restrict access to protected resources based on user permissions.

Root Cause

The root cause is inadequate server-side authorization validation in the API endpoint handler for static routes. While the endpoint requires authentication, it does not perform granular permission checks to verify that the authenticated user has the specific privileges required to read or list static route configurations. This represents a classic "broken access control" vulnerability where authentication is enforced but authorization is not.

Attack Vector

An attacker with valid but low-privileged credentials to the Pimcore backend can exploit this vulnerability by sending direct API requests to the static routes endpoint. The attack is network-based and requires no user interaction beyond initial authentication.

The exploitation flow involves:

  1. An attacker authenticates to the Pimcore backend with minimal privileges
  2. The attacker sends a GET request to /api/static-routes
  3. The server returns the complete static route configuration without validating permissions
  4. The attacker gains access to sensitive routing information including URL patterns, controllers, and internal variables

Since no proof-of-concept code is available, refer to the GitHub Security Advisory for additional technical details on the vulnerability mechanism.

Detection Methods for CVE-2026-23494

Indicators of Compromise

  • Unusual API requests to /api/static-routes from backend users who should not have routing administration privileges
  • Increased volume of static route endpoint access from individual user accounts
  • Access patterns showing enumeration behavior against administrative API endpoints
  • Authentication logs showing low-privilege users accessing configuration endpoints

Detection Strategies

  • Implement logging and alerting for all access to /api/static-routes endpoint
  • Monitor for authorization failures followed by successful data retrieval on sensitive endpoints
  • Review web application firewall logs for unusual patterns of API access by authenticated users
  • Audit user permissions against actual API endpoint access patterns to identify anomalies

Monitoring Recommendations

  • Enable detailed audit logging for all administrative API endpoints in Pimcore
  • Configure SIEM rules to detect access to static route configuration endpoints by non-admin users
  • Implement real-time alerting for potential authorization bypass attempts

How to Mitigate CVE-2026-23494

Immediate Actions Required

  • Upgrade Pimcore to version 12.3.1 or 11.5.14 immediately
  • Review access logs to identify any potential prior exploitation
  • Audit backend user accounts and remove unnecessary access privileges
  • Implement network segmentation to limit access to administrative endpoints

Patch Information

Pimcore has released security patches addressing this vulnerability. The fix is available in:

  • Pimcore v12.3.1 for the 12.x branch
  • Pimcore v11.5.14 for the 11.x branch

The patch implements proper server-side authorization checks on the static routes API endpoint. For technical details on the fix, see GitHub Pull Request #18893.

Workarounds

  • Restrict network access to administrative API endpoints using firewall rules or reverse proxy configurations
  • Implement additional authentication layers such as IP allowlisting for backend access
  • Review and minimize the number of users with backend authentication credentials
  • Consider disabling the static routes API endpoint if not actively required for operations
bash
# Example: Restrict access to admin API endpoints at the web server level (nginx)
location /api/static-routes {
    # Allow only from trusted admin networks
    allow 10.0.0.0/8;
    allow 192.168.1.0/24;
    deny all;
    
    # Pass to Pimcore backend
    try_files $uri $uri/ /index.php$is_args$args;
}

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 Score6.5

  • EPSS Probability0.00%

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

  • GitHub Release v11.5.14

  • GitHub Release v12.3.1
  • Vendor Resources
  • GitHub Security Advisory GHSA-m3r2-724c-pwgf
  • Related CVEs
  • CVE-2026-23495: 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